Skip to content

Commit

Permalink
Bump to sbt-gitbucket-plugin 1.3.0 to be hosted by the plugin registry
Browse files Browse the repository at this point in the history
  • Loading branch information
takezoe committed Jul 1, 2018
1 parent f53cac7 commit 5e1f3b3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 14 deletions.
10 changes: 3 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
organization := "io.github.gitbucket"
name := "gitbucket-explorer-plugin"
version := "6.0.0"
scalaVersion := "2.12.4"
gitbucketVersion := "4.23.1"

libraryDependencies ++= Seq(
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
)
version := "6.1.0"
scalaVersion := "2.12.0"
gitbucketVersion := "4.26.0"

scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
javacOptions in compile ++= Seq("-target", "8", "-source", "8")
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -t babelify ./scripts/index.js -o ./src/main/resources/explorer/assets/bundle.js && sbt package",
"build": "browserify -t babelify ./scripts/index.js -o ./src/main/resources/explorer/assets/bundle.js && sbt assembly",
"watch": "watchify -t babelify ./scripts/index.js -o ./src/main/resources/explorer/assets/bundle.js",
"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"
"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"
},
"author": "tomoki1207",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.1.0
sbt.version = 1.1.6
4 changes: 1 addition & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
logLevel := Level.Warn

addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.12")
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.2.0")
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.3.0")
3 changes: 2 additions & 1 deletion src/main/scala/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
new Version("3.0.0"),
new Version("4.0.0"),
new Version("5.0.0"),
new Version("6.0.0")
new Version("6.0.0"),
new Version("6.1.0")
)

override val controllers = Seq(
Expand Down

0 comments on commit 5e1f3b3

Please sign in to comment.