Skip to content

Commit c01e077

Browse files
committed
Bump to GitBucket 4.10
1 parent 1dfee24 commit c01e077

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Version
1010

1111
Plugin version|GitBucket version
1212
:---|:---
13-
1.0.x|4.9+
13+
2.x| 4.10+
14+
1.0.x|4.9.x
1415

1516
Download
1617
---
@@ -25,6 +26,10 @@ Download a jar file and put into `GITBUCKET_HOME/plugins` and then restart GitBu
2526
Release
2627
---
2728

29+
### 2.0.0 - 28 Feb 2017
30+
31+
- Bump to GitBucket 4.10
32+
2833
### 1.0.2 - 16 Feb 2017
2934

3035
- (bugfix) No redirect to css on deny anonymous access

build.sbt

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
name := "gitbucket-explorer-plugin"
22
organization := "io.github.gitbucket"
3-
version := "1.0.3"
4-
scalaVersion := "2.11.8"
5-
6-
resolvers ++= Seq(
7-
"bkromhout-maven" at "https://dl.bintray.com/bkromhout/maven/"
8-
)
3+
version := "2.0.0"
4+
scalaVersion := "2.12.1"
95

106
libraryDependencies ++= Seq(
11-
"io.github.gitbucket" %% "gitbucket" % "4.9.0" % "provided",
7+
"io.github.gitbucket" %% "gitbucket" % "4.10.0" % "provided",
128
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
139
)
1410

15-
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
11+
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
12+
useJCenter := true

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitbucket-explorer-plugin",
3-
"version": "1.0.3",
3+
"version": "2.0.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 0.13.12
1+
sbt.version = 0.13.13

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
logLevel := Level.Warn
22

3-
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.0.4")
3+
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.0")

src/main/scala/Plugin.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1212
override val pluginId: String = "explorer"
1313
override val pluginName: String = "Project explorer Plugin"
1414
override val description: String = "Explore Files from the file tree in the repository"
15-
override val versions: List[Version] = List(new Version("1.0.0"), new Version("1.0.1"), new Version("1.0.2"), new Version("1.0.3"))
15+
override val versions: List[Version] = List(new Version("1.0.0"), new Version("1.0.1"), new Version("1.0.2"), new Version("1.0.3"),
16+
new Version("2.0.0"))
1617

1718
override val controllers = Seq(
1819
"/*" -> new ExplorerController()

0 commit comments

Comments
 (0)