aboutsummaryrefslogtreecommitdiff
path: root/publish.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-10-31 01:59:56 -0700
committerJakob Odersky <jakob@odersky.com>2018-10-31 02:00:26 -0700
commit5a59e784e58e14a8c3634969674369839c5ee26e (patch)
treecc5c5332d6b84cd0a351b4bb36e1f16a564c9986 /publish.sbt
downloadidenticon-5a59e784e58e14a8c3634969674369839c5ee26e.tar.gz
identicon-5a59e784e58e14a8c3634969674369839c5ee26e.tar.bz2
identicon-5a59e784e58e14a8c3634969674369839c5ee26e.zip
Initial commit
Diffstat (limited to 'publish.sbt')
-rw-r--r--publish.sbt26
1 files changed, 26 insertions, 0 deletions
diff --git a/publish.sbt b/publish.sbt
new file mode 100644
index 0000000..154209c
--- /dev/null
+++ b/publish.sbt
@@ -0,0 +1,26 @@
+organization in ThisBuild := "io.crashbox"
+licenses in ThisBuild := Seq(
+ ("Apache 2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
+homepage in ThisBuild := Some(
+ url("https://github.com/jodersky/scala-identicon"))
+publishMavenStyle in ThisBuild := true
+publishTo in ThisBuild := Some(
+ if (isSnapshot.value)
+ Opts.resolver.sonatypeSnapshots
+ else
+ Opts.resolver.sonatypeStaging
+)
+scmInfo in ThisBuild := Some(
+ ScmInfo(
+ url("https://github.com/jodersky/scala-identicon"),
+ "scm:git@github.com:jodersky/scala-identicon.git"
+ )
+)
+developers in ThisBuild := List(
+ Developer(
+ id = "jodersky",
+ name = "Jakob Odersky",
+ email = "jakob@odersky.com",
+ url = url("https://crashbox.io")
+ )
+)