-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
64 lines (51 loc) · 1.72 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
name := "scala-ledger"
organization := "org.vvcephei"
version := "2.3"
scalaVersion := "2.12.4"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
libraryDependencies ++= Seq(
"org.apache.httpcomponents" % "httpclient" % "4.2.1",
"com.sun.jersey" % "jersey-core" % "1.17.1",
"com.sun.jersey" % "jersey-client" % "1.17.1",
"com.sun.jersey" % "jersey-json" % "1.17.1",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.2",
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % "2.9.2",
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % "2.9.2",
"org.joda" % "joda-convert" % "1.9.2",
"joda-time" % "joda-time" % "2.9.9",
"com.github.tototoshi" %% "scala-csv" % "1.3.5",
"com.beust" % "jcommander" % "1.72",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.6"
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.4" % "test"
)
publishMavenStyle := true
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra :=
<url>https://github.com/vvcephei/scala-ledger</url>
<licenses>
<license>
<name>Apache</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:vvcephei/scala-ledger.git</url>
<connection>scm:git:[email protected]:vvcephei/scala-ledger.git</connection>
</scm>
<developers>
<developer>
<id>vvcephei</id>
<name>John Roesler</name>
<url>http://www.vvcephei.org</url>
</developer>
</developers>