-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
38 lines (30 loc) · 996 Bytes
/
Copy pathbuild.sbt
File metadata and controls
38 lines (30 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name := "function-queue"
description := "Run Scala functions in a queue"
organization := "com.kemichal"
version := "1.0.0"
scalaVersion := "2.12.1"
crossScalaVersions := Seq("2.11.8", "2.12.1")
homepage := Some(url(s"https://github.com/kemichal/function-queue"))
licenses += "MIT" -> url(
"https://github.com/kemichal/function-queue/blob/master/LICENSE")
scmInfo := Some(
ScmInfo(url("https://github.com/kemichal/function-queue"),
"git@github.com:kemichal/function-queue.git"))
releaseCrossBuild := true
publishMavenStyle := true
releasePublishArtifactsAction := PgpKeys.publishSigned.value
publishTo := Some(
if (isSnapshot.value) Opts.resolver.sonatypeSnapshots
else Opts.resolver.sonatypeStaging)
pomExtra :=
<developers>
<developer>
<id>Kemichal</id>
<name>Robert Andersson</name>
<url>https://github.com/kemichal</url>
</developer>
</developers>
import ReleaseTransformations._
releaseProcess := Seq[ReleaseStep](
publishArtifacts
)