Skip to content

Commit 783f885

Browse files
authored
Merge pull request #12 from gitbucket-plugins/plugin-registry
Bump to sbt-gitbucket-plugin 1.3.0 to be hosted by the plugin registry
2 parents f53cac7 + f2afe7c commit 783f885

File tree

6 files changed

+23
-24
lines changed

6 files changed

+23
-24
lines changed

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@ Version
99
---
1010

1111
Plugin version|GitBucket version
12-
:---|:---
13-
6.0|4.23+
14-
5.0|4.21+
15-
4.0|4.16+
16-
3.x|4.11+
17-
2.0.0| 4.10+
18-
1.0.x|4.9.x
12+
:-------------|:----------------
13+
6.1.x |4.26+
14+
6.0.x |4.23+
15+
5.0.x |4.21+
16+
4.0.x |4.16+
17+
3.0.x |4.11+
18+
2.0.0 |4.10+
19+
1.0.x |4.9.x
1920

2021
Download
2122
---
2223

23-
You can download the JAR file from the [Release](https://github.com/gitbucket-plugins/gitbucket-explorer-plugin/releases) page.
24+
You can download the JAR file from the [Release](https://github.com/gitbucket-plugins/gitbucket-explorer-plugin/releases).
2425

2526
Installation
2627
---
@@ -30,13 +31,16 @@ Copy the downloaded plug-in JAR file to your `GITBUCKET_HOME/plugins` directory,
3031
Building
3132
---
3233
Pre-requisites are Node, NPM, SBT, and Java 8.
33-
- Run `npm install` to install all node dependencies.
34-
- Run `npm run-script release` to create a **complete** release (this will call SBT too).
34+
- Run `npm install` to install all node dependencies.
35+
- Run `npm run-script release` to create a **complete** release (this will call SBT too).
3536

3637
See `package.json` for more details.
3738

3839
Releases
3940
---
41+
### 6.1.0 - 1 Jul 2018
42+
- Bump sbt-gitbucket-plugin to 1.3.0 to be hosted by the [plugin registry](https://plugins.gitbucket-community.org/)
43+
4044
### 6.0.0 - 23 Apr 2018
4145
- Bump to GitBucket 4.23.1
4246

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)