Skip to content

Commit 7bef183

Browse files
committed
Bump to sbt-gitbucket-plugin 1.3.0 to be hosted by the plugin registry
1 parent eb28b9f commit 7bef183

File tree

5 files changed

+11
-22
lines changed

5 files changed

+11
-22
lines changed

README.MD

+3
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ sbt clean package
6666

6767
## Release Notes
6868

69+
### 1.7.0
70+
- Bump sbt-gitbucket-plugin to 1.3.0 to be hosted by the [plugin registry](https://plugins.gitbucket-community.org/).
71+
6972
### 1.6.0
7073
- compatibility with GitBucket 4.21.x
7174

build.sbt

+2-17
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,5 @@
11
organization := "fr.brouillard.gitbucket"
22
name := "gitbucket-h2-backup-plugin"
3-
version := "1.6.0"
4-
scalaVersion := "2.12.4"
3+
version := "1.7.0"
4+
scalaVersion := "2.12.6"
55
gitbucketVersion := "4.21.0"
6-
7-
resolvers ++= Seq(
8-
Resolver.jcenterRepo,
9-
Resolver.mavenLocal
10-
)
11-
12-
libraryDependencies ++= Seq(
13-
"io.github.gitbucket" %% "gitbucket" % "4.21.0" % "provided",
14-
"io.github.gitbucket" % "solidbase" % "1.0.2" % "provided",
15-
"com.typesafe.play" %% "twirl-compiler" % "1.3.13" % "provided",
16-
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
17-
)
18-
19-
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
20-
javacOptions in compile ++= Seq("-target", "8", "-source", "8")

project/build.properties

+1-1
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

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

3-
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.2.0")
4-
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.13")
5-
addSbtPlugin("org.scalatra.sbt" % "sbt-scalatra" % "1.0.1")
3+
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.3.0")
4+
//addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.13")
5+
//addSbtPlugin("org.scalatra.sbt" % "sbt-scalatra" % "1.0.1")

src/main/scala/Plugin.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1717
new Version("1.4.0"),
1818
new Version("1.5.0"),
1919
new Version("1.5.1"),
20-
new Version("1.6.0"))
20+
new Version("1.6.0"),
21+
new Version("1.7.0"))
2122

2223
override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq(
2324
(ctx: Context) => Some(Link("h2-backup", "H2 Backup", "admin/h2backup"))

0 commit comments

Comments
 (0)