Skip to content

Commit d70a6c7

Browse files
takezoeMcFoggy
authored andcommitted
Fix order of version definition and dependency (#13)
1 parent a16baa5 commit d70a6c7

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

project/build.scala

+4-7
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,11 @@ object MyBuild extends Build {
2121
version := Version,
2222
scalaVersion := ScalaVersion,
2323
scalacOptions := Seq("-deprecation", "-language:postfixOps"),
24-
resolvers ++= Seq(
25-
"amateras-repo" at "http://amateras.sourceforge.jp/mvn/"
26-
),
2724
libraryDependencies ++= Seq(
28-
"gitbucket" % "gitbucket-assembly" % "4.0.0" % "provided",
29-
"io.github.gitbucket" % "solidbase" % "1.0.0" % "provided",
30-
"com.typesafe.play" %% "twirl-compiler" % "1.0.4" % "provided",
31-
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
25+
"io.github.gitbucket" %% "gitbucket" % "4.3.0" % "provided",
26+
"io.github.gitbucket" % "solidbase" % "1.0.0" % "provided",
27+
"com.typesafe.play" %% "twirl-compiler" % "1.0.4" % "provided",
28+
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
3229
),
3330
javacOptions in compile ++= Seq("-target", "7", "-source", "7")
3431
).enablePlugins(SbtTwirl)

src/main/scala/Plugin.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1212
override val description: String = "Allows to export h2 database of gitbucket"
1313

1414
override val versions: List[Version] = List(
15-
new Version("1.2.0"),
16-
new Version("1.0.0")
15+
new Version("1.0.0"),
16+
new Version("1.2.0")
1717
)
1818

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

0 commit comments

Comments
 (0)