-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·57 lines (44 loc) · 2.1 KB
/
build.sbt
File metadata and controls
executable file
·57 lines (44 loc) · 2.1 KB
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
import com.typesafe.sbt.GitPlugin.autoImport._
import com.typesafe.sbt.SbtGhPages.ghpages
import com.typesafe.sbt.SbtSite.site
import sbtassembly.AssemblyPlugin.autoImport._
import sbtassembly.MergeStrategy
name := "TextComplexity"
version := "1.0"
scalaVersion := "2.11.7"
ivyScala := ivyScala.value map { _.copy(overrideScalaVersion = true) } //this overrides competing scala versions? ???
assemblyJarName in assembly := "TextComplexityDemo.jar"
//test in assembly := {}
mainClass in assembly := Some("Complexity.Demo")
assemblyExcludedJars in assembly := {
val cp = (fullClasspath in assembly).value
cp filter {_.data.getName == "java-cup-0.11a.jar"}
}
libraryDependencies ++= Seq(
"edu.arizona.sista" % "processors_2.11" % "5.5", //required exclude java-cup-0.11a.jar
"edu.arizona.sista" % "processors_2.11" % "5.5" classifier "models",
// "org.clulab" %% "processors" % "5.8.1",
// "org.clulab" %% "processors" % "5.8.1" classifier "models",
"org.apache.commons" % "commons-math3" % "3.3",
"org.apache.commons" % "commons-compress" % "1.9",
// "org.apache.commons" % "commons-io" % "1.3.2",
"com.quantifind" % "wisp_2.11" % "0.0.4",
"org.scalanlp" % "breeze-natives_2.11" % "0.11.2",
// "org.scalanlp" % "breeze_2.11" % "0.11.2",
"org.scalanlp" %% "breeze-viz" % "0.11.2",
"org.scalanlp" % "nak_2.11" % "1.3",
// "edu.stanford.nlp" % "stanford-corenlp" % "3.5.2", //had a bug with MWE in Grapes of Wrath
// "edu.stanford.nlp" % "stanford-corenlp" % "3.5.2" classifier "models", //had a bug with MWE in Grapes of Wrath
"edu.stanford.nlp" % "stanford-corenlp" % "3.5.1",
"edu.stanford.nlp" % "stanford-corenlp" % "3.5.1" classifier "models",
"org.scalactic" %% "scalactic" % "2.2.6", //for unit tests
"org.scalatest" %% "scalatest" % "2.2.6" % "test"
)
// settings for building project website
// https://github.com/sbt/sbt-site
site.settings
// include documentation
site.includeScaladoc()
// https://github.com/sbt/sbt-ghpages
ghpages.settings
git.remoteRepo := "git@github.com:michaelcapizzi/TextComplexity.git"