From 5a59e784e58e14a8c3634969674369839c5ee26e Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Wed, 31 Oct 2018 01:59:56 -0700 Subject: Initial commit --- publish.sbt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 publish.sbt (limited to 'publish.sbt') 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") + ) +) -- cgit v1.2.3