aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@driver.xyz>2018-05-03 16:21:39 -0700
committerJakob Odersky <jakob@driver.xyz>2018-05-03 16:21:39 -0700
commitd7fd38798b24638b095357d4a96a7d3158fa4174 (patch)
treee9482c63aebc31b537dbfb2a0ca6a6a7edd668e8 /build.sbt
parent095431f7e014cda1c7522236531c67258b4bc58d (diff)
downloadsbt-settings-d7fd38798b24638b095357d4a96a7d3158fa4174.tar.gz
sbt-settings-d7fd38798b24638b095357d4a96a7d3158fa4174.tar.bz2
sbt-settings-d7fd38798b24638b095357d4a96a7d3158fa4174.zip
Set up continuous deploymentv1.0.10
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt13
1 files changed, 1 insertions, 12 deletions
diff --git a/build.sbt b/build.sbt
index d1ee106..21b06e2 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,12 +1,7 @@
sbtPlugin := true
-organization := "xyz.driver"
name := "sbt-settings"
-scalaVersion := "2.12.3"
-
-publishMavenStyle := true
-
-resolvers += Resolver.sbtPluginRepo("releases")
+scalaVersion := "2.12.5"
addSbtPlugin("com.lucidchart" %% "sbt-scalafmt" % "1.14")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
@@ -21,9 +16,3 @@ 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")
- else Some("releases" at jfrog + "releases")
-}