aboutsummaryrefslogtreecommitdiff
path: root/publish.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-04-10 21:37:07 -0700
committerJakob Odersky <jakob@odersky.com>2018-04-10 21:37:07 -0700
commit358777fad2afbf7a7f3719367e1f4b0d73c2a42e (patch)
tree0d1d7a64a1b180b8e9beb87e15b12b111b7fc061 /publish.sbt
downloadsbt-gpg-358777fad2afbf7a7f3719367e1f4b0d73c2a42e.tar.gz
sbt-gpg-358777fad2afbf7a7f3719367e1f4b0d73c2a42e.tar.bz2
sbt-gpg-358777fad2afbf7a7f3719367e1f4b0d73c2a42e.zip
Initial commit
Diffstat (limited to 'publish.sbt')
-rw-r--r--publish.sbt25
1 files changed, 25 insertions, 0 deletions
diff --git a/publish.sbt b/publish.sbt
new file mode 100644
index 0000000..46c1c49
--- /dev/null
+++ b/publish.sbt
@@ -0,0 +1,25 @@
+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/sbt-gpg"))
+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/sbt-gpg"),
+ "scm:git@github.com:jodersky/sbt-gpg.git"
+ )
+)
+developers in ThisBuild := List(
+ Developer(
+ id = "jodersky",
+ name = "Jakob Odersky",
+ email = "jakob@odersky.com",
+ url = url("https://crashbox.io")
+ )
+)