aboutsummaryrefslogtreecommitdiff
path: root/publish.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2019-09-21 00:38:30 -0400
committerJakob Odersky <jakob@odersky.com>2019-09-22 14:58:51 -0400
commita5a2118e4e0f31a4b8ae9921fa634058af526cdc (patch)
tree3a8912601637c78c8995fb8403302e2f3971d323 /publish.sbt
parent8a71d804a41ffbd80f881fae24c42637e246afc2 (diff)
downloadcommando-a5a2118e4e0f31a4b8ae9921fa634058af526cdc.tar.gz
commando-a5a2118e4e0f31a4b8ae9921fa634058af526cdc.tar.bz2
commando-a5a2118e4e0f31a4b8ae9921fa634058af526cdc.zip
Migrate build to mill; redesign command structure and parser
Diffstat (limited to 'publish.sbt')
-rw-r--r--publish.sbt29
1 files changed, 0 insertions, 29 deletions
diff --git a/publish.sbt b/publish.sbt
deleted file mode 100644
index 9c0a42e..0000000
--- a/publish.sbt
+++ /dev/null
@@ -1,29 +0,0 @@
-organization in ThisBuild := "io.crashbox"
-licenses in ThisBuild := Seq(
- ("BSD-3-Clause", url("https://opensource.org/licenses/BSD-3-Clause")))
-homepage in ThisBuild := Some(url("https://github.com/jodersky/commando"))
-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/commando"),
- "scm:git@github.com:jodersky/commando.git"
- )
-)
-developers in ThisBuild := List(
- Developer(
- id = "jodersky",
- name = "Jakob Odersky",
- email = "jakob@odersky.com",
- url = url("https://crashbox.io")
- )
-)
-version in ThisBuild := {
- import sys.process._
- ("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
-}