-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
59 lines (58 loc) · 2.16 KB
/
build.sbt
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import Dependencies._
import sbt.Keys.publishArtifact
import ReleaseTransformations._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.deltaprojects",
scalaVersion := "2.12.6",
description := "OpenTracing helpers for the Lagom Framework"
)),
licenses := Seq("MIT-0" → url("https://github.com/aws/mit-0")),
homepage := Some(url("https://deltaprojects.com")),
name := "lagom-opentracing",
crossScalaVersions := Seq("2.11.12", "2.12.6"),
libraryDependencies ++= Seq(
scalaTest % Test,
"com.lightbend.lagom" %% "lagom-scaladsl-api" % "1.4.7" % "provided",
"com.lightbend.lagom" %% "lagom-scaladsl-server" % "1.4.7" % "provided",
"io.opentracing" % "opentracing-api" % "0.31.0" % "provided",
"io.opentracing" % "opentracing-util" % "0.31.0" % "provided",
"io.opentracing.contrib" %% "opentracing-scala-concurrent" % "0.0.4"
),
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
publishArtifacts,
setNextVersion,
commitNextVersion,
pushChanges,
releaseStepCommand("sonatypeRelease")
),
publishMavenStyle := true,
releaseCrossBuild := true,
releasePublishArtifactsAction := PgpKeys.publishSigned.value,
publishArtifact in Test := false,
pomIncludeRepository := (_ ⇒ false),
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
startYear := Some(2018),
organizationHomepage := Some(url("https://github.com/deltaprojects")),
developers := Developer("jonaslan", "Jonas Lantto", "[email protected]", url("https://github.com/jonaslan")) :: Nil,
scmInfo := Some(
ScmInfo(
browseUrl = url("https://github.com/deltaprojects/lagom-opentracing.git"),
connection = "scm:git:[email protected]:deltaprojects/lagom-opentracing.git"
)
)
)