Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,11 @@ object MyBuild extends Build {
version := Version,
scalaVersion := ScalaVersion,
scalacOptions := Seq("-deprecation", "-language:postfixOps"),
resolvers ++= Seq(
"amateras-repo" at "http://amateras.sourceforge.jp/mvn/"
),
libraryDependencies ++= Seq(
"gitbucket" % "gitbucket-assembly" % "4.0.0" % "provided",
"io.github.gitbucket" % "solidbase" % "1.0.0" % "provided",
"com.typesafe.play" %% "twirl-compiler" % "1.0.4" % "provided",
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
"io.github.gitbucket" %% "gitbucket" % "4.3.0" % "provided",
"io.github.gitbucket" % "solidbase" % "1.0.0" % "provided",
"com.typesafe.play" %% "twirl-compiler" % "1.0.4" % "provided",
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
),
javacOptions in compile ++= Seq("-target", "7", "-source", "7")
).enablePlugins(SbtTwirl)
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
override val description: String = "Allows to export h2 database of gitbucket"

override val versions: List[Version] = List(
new Version("1.2.0"),
new Version("1.0.0")
new Version("1.0.0"),
new Version("1.2.0")
)

override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq(
Expand Down