Newer
Older
GitBucket / src / main / scala / gitbucket / core / GitBucketCoreModule.scala
@Naoki Takezoe Naoki Takezoe on 4 May 2017 1 KB Bump to 4.12.1
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"),
  new Version("4.9.0",
    new LiquibaseMigration("update/gitbucket-core_4.9.xml")
  ),
  new Version("4.10.0"),
  new Version("4.11.0",
    new LiquibaseMigration("update/gitbucket-core_4.11.xml")
  ),
  new Version("4.12.0"),
  new Version("4.12.1")
)