aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sbt5
-rw-r--r--version.sbt2
2 files changed, 6 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index b44dcff..d1ee106 100644
--- a/build.sbt
+++ b/build.sbt
@@ -6,6 +6,8 @@ scalaVersion := "2.12.3"
publishMavenStyle := true
+resolvers += Resolver.sbtPluginRepo("releases")
+
addSbtPlugin("com.lucidchart" %% "sbt-scalafmt" % "1.14")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
@@ -17,6 +19,9 @@ addSbtPlugin("com.typesafe.sbt" %% "sbt-native-packager" % "1.3.2")
addSbtPlugin("com.eed3si9n" %% "sbt-assembly" % "0.14.5")
addSbtPlugin("com.github.gseitz" %% "sbt-release" % "1.0.7")
+// the following prevents thousands of meaningless stacktraces by docker plugin on JDK 9
+libraryDependencies += "javax.activation" % "activation" % "1.1.1" % Test
+
publishTo := {
val jfrog = "https://drivergrp.jfrog.io/drivergrp/"
if (isSnapshot.value) Some("snapshots" at jfrog + "snapshots")
diff --git a/version.sbt b/version.sbt
index 9b62b99..814564a 100644
--- a/version.sbt
+++ b/version.sbt
@@ -1 +1 @@
-version in ThisBuild := "1.0.9-SNAPSHOT"
+version in ThisBuild := "1.0.9"