Skip to content

Commit a9f16c9

Browse files
committed
update to SBT 0.13.15, update dependencies and bump version number
1 parent fb422a7 commit a9f16c9

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ site generators ([jekyll](http://jekyllrb.com/), [hugo](https://gohugo.io/), etc
3434

3535
| pages version | gitbucket version |
3636
| :---: | :---: |
37+
| 1.2 | 4.12.1 |
3738
| 1.1 | 4.11 |
3839
| 1.0 | 4.10 |
3940
| 0.9 | 4.9 |

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
organization := "gitbucket"
22
name := "pages-plugin"
3-
scalaVersion := "2.12.1"
3+
version := "1.2"
4+
scalaVersion := "2.12.2"
45
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8", "-feature")
56

67
lazy val root = (project in file(".")).enablePlugins(SbtTwirl)
@@ -11,7 +12,7 @@ resolvers ++= Seq(
1112
)
1213

1314
libraryDependencies ++= Seq(
14-
"io.github.gitbucket" %% "gitbucket" % "4.11.0",
15+
"io.github.gitbucket" %% "gitbucket" % "4.12.1",
1516
"javax.servlet" % "javax.servlet-api" % "3.1.0",
1617
"com.typesafe.play" %% "twirl-compiler" % "1.3.0"
1718
)

project/build.properties

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

src/main/scala/Plugin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
2525
"1.1",
2626
new LiquibaseMigration("update/gitbucket-page_1.1.xml"),
2727
new SqlMigration("update/gitbucket-page_1.1.sql")
28-
)
28+
),
29+
new Version("1.2")
2930
)
3031

3132
override val controllers: Seq[(String, ControllerBase)] = Seq(

0 commit comments

Comments
 (0)