-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
26 lines (24 loc) · 1011 Bytes
/
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
lazy val jdbc = project
inScope(Global)(Seq(
autoScalaLibrary := false,
credentials += Credentials(
"Sonatype Nexus Repository Manager",
"oss.sonatype.org",
sys.env.getOrElse("SONATYPE_USERNAME", ""),
sys.env.getOrElse("SONATYPE_PASSWORD", ""
)),
crossPaths := false,
developers += Developer("pauldraper", "Paul Draper", "[email protected]", url("https://github.com/pauldraper")),
homepage := Some(url("https://git.lucidchart.com/lucidsoftware/opentracing-playframework")),
licenses += "Apache 2.0 License" -> url("https://www.apache.org/licenses/LICENSE-2.0"),
organization := "com.lucidchart",
organizationHomepage := Some(url("http://opentracing.io/")),
organizationName := "OpenTracing",
scmInfo := Some(ScmInfo(
url("https://github.com/lucidsoftware/opentracing-jdbc"),
"scm:git:[email protected]:lucidsoftware/opentracing-jdbc.git"
)),
startYear := Some(2017),
version := sys.props.getOrElse("build.version", "0-SNAPSHOT")
))
skip in publish := true