-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
50 lines (38 loc) · 1.3 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
// addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8")
name := "ineq"
organization := "org.scalar-project"
version := "1.2.1"
scalaVersion := "2.11.7"
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")
}
sonatypeProfileName := "mgoeminne"
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
credentials += Credentials(Path.userHome / ".sbt" / "0.13" / "sonatype.sbt")
pomExtra := (
<url>https://github.com/mgoeminne/scalar-ineq</url>
<licenses>
<license>
<name>Apache-style</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/mgoeminne/scalar-ineq.git</url>
<connection>scm:git:git@github.com:mgoeminne/scalar-ineq.git</connection>
</scm>
<developers>
<developer>
<id>mgoeminne</id>
<name>Mathieu Goeminne</name>
<url></url>
</developer>
</developers>)
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.2" % "test"