-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
46 lines (34 loc) · 1 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
name := "Tschingt"
version := "0.8.1"
scalaVersion := "2.12.5"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % "test"
crossScalaVersions := Seq("2.11.12", "2.12.4")
crossVersion := CrossVersion.binary
organization := "com.pidanic"
sonatypeProfileName := "com.pidanic"
pomIncludeRepository := { _ => false }
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
homepage := Some(url("http://pidanic.com"))
scmInfo := Some(
ScmInfo(
url("https://github.com/PaulNoth/tschingt"),
"scm:[email protected]:PaulNoth/tschingt.git"
)
)
developers := List(
Developer(
id = "paulp",
name = "Pavol Pidanič",
email = "[email protected]",
url = url("http://pidanic.com")
)
)
publishMavenStyle := true
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")
}
publishArtifact in Test := false