Skip to content

Commit 5e1f3b3

Browse files
committed
Bump to sbt-gitbucket-plugin 1.3.0 to be hosted by the plugin registry
1 parent f53cac7 commit 5e1f3b3

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

build.sbt

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
organization := "io.github.gitbucket"
22
name := "gitbucket-explorer-plugin"
3-
version := "6.0.0"
4-
scalaVersion := "2.12.4"
5-
gitbucketVersion := "4.23.1"
6-
7-
libraryDependencies ++= Seq(
8-
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
9-
)
3+
version := "6.1.0"
4+
scalaVersion := "2.12.0"
5+
gitbucketVersion := "4.26.0"
106

117
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
128
javacOptions in compile ++= Seq("-target", "8", "-source", "8")

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
8-
"build": "browserify -t babelify ./scripts/index.js -o ./src/main/resources/explorer/assets/bundle.js && sbt package",
8+
"build": "browserify -t babelify ./scripts/index.js -o ./src/main/resources/explorer/assets/bundle.js && sbt assembly",
99
"watch": "watchify -t babelify ./scripts/index.js -o ./src/main/resources/explorer/assets/bundle.js",
10-
"release": "set NODE_ENV=production && browserify ./scripts/index.js -t babelify -t envify | uglifyjs -c warnings=false > ./src/main/resources/explorer/assets/bundle.js && sbt clean package"
10+
"release": "set NODE_ENV=production && browserify ./scripts/index.js -t babelify -t envify | uglifyjs -c warnings=false > ./src/main/resources/explorer/assets/bundle.js && sbt clean assembly"
1111
},
1212
"author": "tomoki1207",
1313
"license": "MIT",

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.1.0
1+
sbt.version = 1.1.6

project/plugins.sbt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
logLevel := Level.Warn
2-
3-
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.12")
4-
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.2.0")
2+
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.3.0")

src/main/scala/Plugin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
2121
new Version("3.0.0"),
2222
new Version("4.0.0"),
2323
new Version("5.0.0"),
24-
new Version("6.0.0")
24+
new Version("6.0.0"),
25+
new Version("6.1.0")
2526
)
2627

2728
override val controllers = Seq(

0 commit comments

Comments
 (0)