Skip to content

Commit

Permalink
Fix order of version definition and dependency (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
takezoe authored and McFoggy committed Aug 3, 2016
1 parent a16baa5 commit d70a6c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
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

0 comments on commit d70a6c7

Please sign in to comment.