-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (34 loc) · 1.35 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
lazy val root = (project in file("."))
.settings(
name := "colors",
organization := "co.lors",
managedScalaInstance := false,
crossPaths := false,
version := "0.3",
versionScheme := Some("semver-spec"),
homepage := Some(url("https://github.com/co-lors/colors-jvm")),
licenses := Seq("Apache License 2.0" -> url("https://opensource.org/licenses/Apache-2.0")),
libraryDependencies += "com.github.sbt.junit" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test,
doc / sources := Seq(),
publishTo := {
val nexus = "https://s01.oss.sonatype.org/"
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
pomIncludeRepository := { _ => false },
pomExtra :=
<scm>
<url>git@github.com:co-lors/colors-jvm.git</url>
<connection>scm:git:git@github.com:co-lors/colors-jvm.git</connection>
</scm>
<developers>
<developer>
<id>soc</id>
<name>Simon Ochsenreither</name>
<url>https://github.com/soc</url>
<roles>
<role>Project Lead</role>
</roles>
</developer>
</developers>
)