-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
66 lines (52 loc) · 1.74 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
63
64
name := "scala-ofx"
organization := "org.vvcephei"
version := "1.6"
scalaVersion := "2.12.4"
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.0.6",
"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"
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.4" % "test"
)
mainClass := Some("org.vvcephei.scalaofx.cli.CLI")
mainClass in assembly := Some("org.vvcephei.scalaofx.cli.CLI")
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-ofx</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-ofx.git</url>
<connection>scm:git:[email protected]:vvcephei/scala-ofx.git</connection>
</scm>
<developers>
<developer>
<id>vvcephei</id>
<name>John Roesler</name>
<url>http://www.vvcephei.org</url>
</developer>
</developers>