Newer
Older
GitBucket / src / main / scala / gitbucket / core / GitBucketCoreModule.scala
@Naoki Takezoe Naoki Takezoe on 23 Dec 2016 857 bytes GitBucket 4.8 release
package gitbucket.core

import io.github.gitbucket.solidbase.migration.{SqlMigration, LiquibaseMigration}
import io.github.gitbucket.solidbase.model.{Version, Module}

object GitBucketCoreModule extends Module("gitbucket-core",
  new Version("4.0.0",
    new LiquibaseMigration("update/gitbucket-core_4.0.xml"),
    new SqlMigration("update/gitbucket-core_4.0.sql")
  ),
  new Version("4.1.0"),
  new Version("4.2.0",
    new LiquibaseMigration("update/gitbucket-core_4.2.xml")
  ),
  new Version("4.2.1"),
  new Version("4.3.0"),
  new Version("4.4.0"),
  new Version("4.5.0"),
  new Version("4.6.0",
    new LiquibaseMigration("update/gitbucket-core_4.6.xml")
  ),
  new Version("4.7.0",
    new LiquibaseMigration("update/gitbucket-core_4.7.xml"),
    new SqlMigration("update/gitbucket-core_4.7.sql")
  ),
  new Version("4.7.1"),
  new Version("4.8")
)