Skip to content

Commit ada1232

Browse files
committed
prepare for version 5.0.0 of the plug-in
1 parent 7bdb469 commit ada1232

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

build.sbt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
name := "gitbucket-explorer-plugin"
21
organization := "io.github.gitbucket"
3-
version := "4.0.0"
4-
scalaVersion := "2.12.3"
2+
name := "gitbucket-explorer-plugin"
3+
version := "5.0.0"
4+
scalaVersion := "2.12.4"
5+
gitbucketVersion := "4.21.0"
56

67
libraryDependencies ++= Seq(
7-
"io.github.gitbucket" %% "gitbucket" % "4.16.0" % "provided",
88
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
99
)
1010

1111
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
12+
javacOptions in compile ++= Seq("-target", "8", "-source", "8")
13+
1214
useJCenter := true

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitbucket-explorer-plugin",
3-
"version": "4.0.0",
3+
"version": "5.0.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

project/plugins.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
logLevel := Level.Warn
22

3-
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.0")
3+
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.12")
4+
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.2.0")

src/main/scala/Plugin.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1919
new Version("1.0.3"),
2020
new Version("2.0.0"),
2121
new Version("3.0.0"),
22-
new Version("4.0.0")
22+
new Version("4.0.0"),
23+
new Version("5.0.0")
2324
)
2425

2526
override val controllers = Seq(
@@ -45,4 +46,4 @@ class Plugin extends gitbucket.core.plugin.Plugin {
4546
""".stripMargin
4647
)
4748
}
48-
}
49+
}

0 commit comments

Comments
 (0)