aboutsummaryrefslogtreecommitdiff
path: root/publish.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'publish.sbt')
-rw-r--r--publish.sbt8
1 files changed, 4 insertions, 4 deletions
diff --git a/publish.sbt b/publish.sbt
index b067239..55d3917 100644
--- a/publish.sbt
+++ b/publish.sbt
@@ -1,24 +1,24 @@
-organization := "xyz.driver"
+organization in ThisBuild := "xyz.driver"
licenses in ThisBuild := Seq(
("Apache 2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
homepage in ThisBuild := Some(
url("https://github.com/drivergroup/spray-json-derivation"))
publishMavenStyle in ThisBuild := true
-publishTo := Some(
+publishTo in ThisBuild := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
-scmInfo := Some(
+scmInfo in ThisBuild := Some(
ScmInfo(
url("https://github.com/drivergroup/spray-json-derivation"),
"scm:git@github.com:drivergroup/spray-json-derivation.git"
)
)
-developers := List(
+developers in ThisBuild := List(
Developer(
id = "jodersky",
name = "Jakob Odersky",