Skip to content

Commit 115fe09

Browse files
committed
update dependencies
1 parent 5f31842 commit 115fe09

File tree

2 files changed

+17
-18
lines changed

2 files changed

+17
-18
lines changed

build.sbt

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
1-
val Organization = "fr.brouillard.gitbucket"
2-
val ProjectName = "gitbucket-h2-backup-plugin"
3-
val ProjectVersion = "1.5.1"
4-
5-
lazy val h2_backup_plugin = (project in file(".")).enablePlugins(SbtTwirl)
6-
7-
organization := Organization
8-
name := ProjectName
9-
version := ProjectVersion
10-
scalaVersion := "2.12.3"
1+
organization := "fr.brouillard.gitbucket"
2+
name := "gitbucket-h2-backup-plugin"
3+
version := "1.6.0"
4+
scalaVersion := "2.12.4"
5+
gitbucketVersion := "4.21.0"
116

7+
resolvers ++= Seq(
8+
Resolver.jcenterRepo,
9+
Resolver.mavenLocal
10+
)
1211

1312
libraryDependencies ++= Seq(
14-
"io.github.gitbucket" %% "gitbucket" % "4.16.0" % "provided",
15-
"io.github.gitbucket" % "solidbase" % "1.0.2" % "provided",
16-
"com.typesafe.play" %% "twirl-compiler" % "1.3.0" % "provided",
17-
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
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"
1817
)
1918

2019
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
21-
javacOptions in compile ++= Seq("-target", "8", "-source", "8")
22-
23-
useJCenter := true
20+
javacOptions in compile ++= Seq("-target", "8", "-source", "8")

project/plugins.sbt

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

3-
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.0")
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")

0 commit comments

Comments
 (0)