-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.sbt
138 lines (110 loc) · 4.55 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
val annotatorLibrary = Map[String, (ModuleID, String)]()
organization := "com.github.mynlp"
name := "jigg"
scalaVersion := "2.11.8"
version := "0.8.0"
fork in run := true
parallelExecution in Test := false
crossPaths := false
// Allow shell mode from sbt runMain
connectInput in run := true
mainClass in assembly := Some("jp.jigg.nlp.pipeline.Pipeline")
javacOptions ++= Seq("-Xlint:all", "-source", "1.6", "-target", "1.6")
scalacOptions ++= Seq("-deprecation", "-feature")
// The unmanaged jars can be put on both lib/ and jar/ directories.
// The intended use of jar/ is to put the third-party NLP software (e.g., easyccg.jar),
// which we do not want to include in an assembled jar.
val externalJars = Seq("lib", "jar")
.map(file).filter(_.exists).flatMap(_.listFiles()).filter(_.getName.endsWith(".jar"))
unmanagedJars in Compile ++= externalJars
unmanagedJars in Runtime ++= externalJars
assemblyExcludedJars in assembly := {
val cp = (fullClasspath in assembly).value
val unmanaged = file("jar").listFiles().map(_.getName).filter(_.endsWith(".jar"))
cp filter { x => unmanaged contains x.data.getName }
}
assemblyMergeStrategy in assembly := {
case PathList(ps @ _*) if ps.last endsWith ".class" => MergeStrategy.first
case x =>
val oldStrategy = (assemblyMergeStrategy in assembly).value
oldStrategy(x)
}
libraryDependencies ++= Seq(
"com.novocode" % "junit-interface" % "0.10-M4" % "test->default",
"org.scalactic" %% "scalactic" % "2.2.6",
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
"org.scala-lang.modules" %% "scala-xml" % "1.0.5",
"org.scala-lang" % "scala-reflect" % "2.11.7",
"com.ibm.icu" % "icu4j" % "56.1",
"org.scalanlp" %% "breeze" % "0.12",
"org.scalanlp" % "breeze-config_2.10" % "0.9.1",
"org.json4s" %% "json4s-jackson" % "3.3.0",
"com.typesafe.akka" %% "akka-http" % "10.0.1",
// "com.typesafe.akka" %% "akka-http-xml" % "10.0.1",
"edu.ucar" % "cdm" % "4.6.8"
)
libraryDependencies ++= (
stanfordCoreNLPDependencies
++ kuromojiDependencies
++ berkeleyParserDependencies)
val stanfordCoreNLPDependencies = Seq(
"org.slf4j" % "slf4j-api" % "1.7.20", // logger
// "org.slf4j" % "slf4j-simple" % "1.7.6",
"edu.stanford.nlp" % "stanford-corenlp" % "3.9.2"
)
val kuromojiDependencies = Seq(
"com.atilika.kuromoji" % "kuromoji-ipadic" % "0.9.0",
"com.atilika.kuromoji" % "kuromoji-jumandic" % "0.9.0",
"com.atilika.kuromoji" % "kuromoji-unidic" % "0.9.0"
)
val berkeleyParserDependencies = Seq(
"edu.berkeley.nlp" % "berkeleyparser" % "r32"
)
libraryDependencies ++= annotatorLibrary.map { case (k, v) => v._1 }.toSeq
lazy val root = (project in file(".")).
enablePlugins(BuildInfoPlugin).
settings(
buildInfoKeys := annotatorLibrary.map { case (k, v) =>
BuildInfoKey.action("ann_" + k)(v._2)
}.toSeq,
// Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion),
buildInfoPackage := "jigg.pipeline.annotator"
)
resolvers ++= Seq(
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Unidata maven repository" at "https://artifacts.unidata.ucar.edu/content/repositories/unidata-releases"
)
// FIXME: remove setting of overwrite flag when the following issue will be fixed: https://github.com/sbt/sbt/issues/3725
publishConfiguration := publishConfiguration.value.withOverwrite(isSnapshot.value)
com.typesafe.sbt.pgp.PgpKeys.publishSignedConfiguration := com.typesafe.sbt.pgp.PgpKeys.publishSignedConfiguration.value.withOverwrite(isSnapshot.value)
publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(isSnapshot.value)
com.typesafe.sbt.pgp.PgpKeys.publishLocalSignedConfiguration := com.typesafe.sbt.pgp.PgpKeys.publishLocalSignedConfiguration.value.withOverwrite(isSnapshot.value)
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
pomIncludeRepository := { _ => false }
pomExtra := <url>https://github.com/mynlp/jigg</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:mynlp/jigg.git</url>
<connection>scm:git:[email protected]:mynlp/jigg.git</connection>
</scm>
<developers>
<developer>
<id>[email protected]</id>
<name>Hiroshi Noji</name>
<url>https://github.com/nozyh/</url>
</developer>
</developers>