aboutsummaryrefslogtreecommitdiff
path: root/publish.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-02-15 18:41:06 -0800
committerJakob Odersky <jakob@odersky.com>2018-02-15 18:45:27 -0800
commit4e58073b3708e910091ca393edd05ecf96eaa437 (patch)
treea57327e33ee84f915fcd51db653ca5ca68fe7eea /publish.sbt
parentda5479754df5ebf593594b6f5f0b6d5d0692ab6f (diff)
downloadspray-json-derivation-4e58073b3708e910091ca393edd05ecf96eaa437.tar.gz
spray-json-derivation-4e58073b3708e910091ca393edd05ecf96eaa437.tar.bz2
spray-json-derivation-4e58073b3708e910091ca393edd05ecf96eaa437.zip
Separate and fix publishing settingsv0.1.1
Diffstat (limited to 'publish.sbt')
-rw-r--r--publish.sbt28
1 files changed, 28 insertions, 0 deletions
diff --git a/publish.sbt b/publish.sbt
new file mode 100644
index 0000000..6138764
--- /dev/null
+++ b/publish.sbt
@@ -0,0 +1,28 @@
+organization := "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(
+ if (isSnapshot.value)
+ Opts.resolver.sonatypeSnapshots
+ else
+ Opts.resolver.sonatypeStaging
+)
+
+scmInfo := Some(
+ ScmInfo(
+ url("https://github.com/drivergroup/spray-json-derivation"),
+ "scm:git@github.com:drivergroup/spray-json-derivation.git"
+ )
+)
+
+developers := List(
+ Developer(
+ id = "jakob@driver.xyz",
+ name = "Jakob Odersky",
+ email = "jakob@driver.xyz",
+ url = url("https://driver.xyz")
+ )
+)