-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.sbt
62 lines (52 loc) · 1.81 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
60
61
62
// http://www.scala-sbt.org/0.13/docs/Multi-Project.html
organization := "be.cetic"
version := "0.1.18"
name := "tsimulus"
scalaVersion := "2.11.8"
crossScalaVersions := Seq("2.11.8", "2.12.0")
coverageEnabled := 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")
}
publishMavenStyle := true
pomExtra := (
<url>https://github.com/cetic/TSimulus</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:cetic/TSimulus.git</url>
<connection>scm:git:git@github.com:cetic/TSimulus.git</connection>
</scm>
<developers>
<developer>
<id>mgoeminne</id>
<name>Mathieu Goeminne</name>
<email>mathieu.goeminne@cetic.be</email>
<url>https://www.cetic.be/Mathieu-Goeminne</url>
<organization>CETIC</organization>
<organizationUrl>https://www.cetic.be</organizationUrl>
</developer>
</developers>)
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
libraryDependencies ++= Seq(
"com.github.nscala-time" %% "nscala-time" % "2.14.0",
"org.apache.commons" % "commons-math3" % "3.6.1",
"io.spray" %% "spray-json" % "1.3.2"
)
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scala-lang.modules" %% "scala-xml" % "1.0.5"
)
libraryDependencies ++= Seq(
"org.scalactic" %% "scalactic" % "3.0.0",
"org.scalatest" %% "scalatest" % "3.0.0" % "test"
)