Skip to content

Commit

Permalink
Updgrade dependencies
Browse files Browse the repository at this point in the history
sbt 1.2.6
scala 2.12.7
sbt-release-early 2.1.1
  • Loading branch information
esamson committed Nov 30, 2018
1 parent d6e2b8e commit feeb303
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 37 deletions.
72 changes: 37 additions & 35 deletions build.sbt
@@ -1,35 +1,37 @@
lazy val root = (project in file(".")).settings(
inThisBuild(
Seq(
organization := "ph.samson",
homepage := Some(url("https://github.com/esamson/sbt-groovy")),
licenses := Seq(
"MIT" -> url("http://opensource.org/licenses/mit-license.php")),
scmInfo := Some(
ScmInfo(
url("https://github.com/esamson/sbt-groovy"),
"scm:git:git@github.com:esamson/sbt-groovy.git"
)
),
developers := List(
Developer(
id = "esamson",
name = "Edward Samson",
email = "edward@samson.ph",
url = url("https://edward.samson.ph")
)
),
scalaVersion := "2.12.4",
pgpPublicRing := file("./travis/pubring.asc"),
pgpSecretRing := file("./travis/secring.asc"),
releaseEarlyWith := SonatypePublisher
)),
name := "sbt-groovy",
sbtPlugin := true,
scriptedLaunchOpts ++= Seq(
"-Xmx2048M",
"-XX:MaxMetaspaceSize=512M",
s"-Dplugin.version=${version.value}"
),
scriptedBufferLog := false
)
lazy val root = (project in file("."))
.enablePlugins(SbtPlugin)
.settings(
inThisBuild(
Seq(
organization := "ph.samson",
homepage := Some(url("https://github.com/esamson/sbt-groovy")),
licenses := Seq(
"MIT" -> url("http://opensource.org/licenses/mit-license.php")),
scmInfo := Some(
ScmInfo(
url("https://github.com/esamson/sbt-groovy"),
"scm:git:git@github.com:esamson/sbt-groovy.git"
)
),
developers := List(
Developer(
id = "esamson",
name = "Edward Samson",
email = "edward@samson.ph",
url = url("https://edward.samson.ph")
)
),
scalaVersion := "2.12.7",
pgpPublicRing := file("./travis/pubring.asc"),
pgpSecretRing := file("./travis/secring.asc"),
releaseEarlyWith := SonatypePublisher
)
),
name := "sbt-groovy",
scriptedLaunchOpts ++= Seq(
"-Xmx2048M",
"-XX:MaxMetaspaceSize=512M",
s"-Dplugin.version=${version.value}"
),
scriptedBufferLog := false
)
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.0.4
sbt.version=1.2.6
2 changes: 1 addition & 1 deletion project/plugins.sbt
@@ -1,2 +1,2 @@
addSbtPlugin("ch.epfl.scala" % "sbt-release-early" % "2.0.1")
addSbtPlugin("ch.epfl.scala" % "sbt-release-early" % "2.1.1")
libraryDependencies += { "org.scala-sbt" %% "scripted-plugin" % sbtVersion.value }

0 comments on commit feeb303

Please sign in to comment.