Skip to content

Commit

Permalink
update dependencies to the latest version.
Browse files Browse the repository at this point in the history
  • Loading branch information
aadrian committed Jun 6, 2017
1 parent 6d7b4c5 commit b1c838b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
val Organization = "fr.brouillard.gitbucket"
val ProjectName = "gitbucket-announce-plugin"
val ProjectVersion = "1.6.0"
val ProjectVersion = "1.7.0"

lazy val root = (project in file(".")).enablePlugins(SbtTwirl)

organization := Organization
name := ProjectName
version := ProjectVersion
scalaVersion := "2.12.1"
scalaVersion := "2.12.2"

libraryDependencies ++= Seq(
"io.github.gitbucket" %% "gitbucket" % "4.10.0" % "provided",
"io.github.gitbucket" % "solidbase" % "1.0.0" % "provided",
"io.github.gitbucket" %% "gitbucket" % "4.13.0" % "provided",
"io.github.gitbucket" % "solidbase" % "1.0.2" % "provided",
"com.typesafe.play" %% "twirl-compiler" % "1.3.0" % "provided",
"org.apache.commons" % "commons-email" % "1.4" % "provided",
"com.sun.mail" % "javax.mail" % "1.5.2" % "provided",
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
)

scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps", "-Ydelambdafy:method", "-target:jvm-1.8")
javacOptions in compile ++= Seq("-target", "7", "-source", "7")
javacOptions in compile ++= Seq("-target", "8", "-source", "8")

useJCenter := true
useJCenter := true
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 0.13.12
sbt.version = 0.13.15
1 change: 1 addition & 0 deletions src/main/scala/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class Plugin extends gitbucket.core.plugin.Plugin {
, new Version("1.4.0")
, new Version("1.5.0")
, new Version("1.6.0")
, new Version("1.7.0")
)

override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq(
Expand Down

0 comments on commit b1c838b

Please sign in to comment.