-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
110 lines (83 loc) · 3.83 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
import sbt.ExclusionRule
name := "command"
version := "1.0"
scalaVersion := "2.10.4"
// Automatically find def main(args:Array[String]) methods from classpath
packAutoSettings
conflictManager := sbt.ConflictManager.latestRevision
libraryDependencies += "org.apache.spark" %% "spark-core" % "1.2.1" excludeAll(
ExclusionRule(organization = "org.slf4j")
)
libraryDependencies += "org.apache.spark" %% "spark-mllib" % "1.2.1" excludeAll (
ExclusionRule(organization = "org.slf4j")
)
libraryDependencies += "net.sourceforge.owlapi" % "owlapi-distribution" % "4.0.0" excludeAll(
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "xerces"),
ExclusionRule(organization = "org.apache.xerces"),
ExclusionRule(organization = "xml-apis")
)
libraryDependencies += "com.github.tototoshi" %% "scala-csv" % "1.1.1" excludeAll (
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "xml-apis")
)
libraryDependencies += "org.slf4j" % "slf4j-log4j12" % "1.7.8"
libraryDependencies += "secondstring" % "secondstring" % "20120620" excludeAll(
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "net.sourceforge.owlapi"),
ExclusionRule(organization = "org.apache.xerces"),
ExclusionRule(organization = "xml-apis")
)
libraryDependencies += "org.apache.lucene" % "lucene-analyzers-common" % "4.10.3" excludeAll(
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "net.sourceforge.owlapi"),
ExclusionRule(organization = "org.apache.xerces")
)
libraryDependencies += "org.scalaj" %% "scalaj-http" % "1.1.1" excludeAll(
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "xerces"),
ExclusionRule(organization = "org.apache.xerces")
)
libraryDependencies += "org.scalanlp" % "epic_2.10" % "0.3" excludeAll (
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "xml-apis")
)
libraryDependencies += "com.typesafe.play" % "play-json_2.10" % "2.4.0-M2" excludeAll(
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "xerces"),
ExclusionRule(organization = "org.apache.xerces"),
ExclusionRule(organization = "xml-apis")
)
libraryDependencies += "org.scalanlp" % "english_2.10" % "2015.1.25" excludeAll(
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "net.sourceforge.owlapi"),
ExclusionRule(organization = "xerces"),
ExclusionRule(organization = "org.apache.xerces"),
ExclusionRule(organization = "xml-apis")
)
libraryDependencies += "org.apache.commons" % "commons-math3" % "3.4.1" excludeAll(
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "xerces"),
ExclusionRule(organization = "org.apache.xerces"),
ExclusionRule(organization = "xml-apis")
)
libraryDependencies += "com.typesafe" % "config" % "1.2.1" excludeAll (
ExclusionRule(organization = "org.slf4j")
)
libraryDependencies += "com.typesafe.scala-logging" % "scala-logging-slf4j_2.10" % "2.1.2" excludeAll (
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "xml-apis")
)
libraryDependencies += "de.dwslab" % "Alcomo" % "1.01" excludeAll(
ExclusionRule(organization = "org.slf4j"),
ExclusionRule(organization = "net.sourceforge.owlapi"),
ExclusionRule(organization = "com.github.ansell.owlapi"),
ExclusionRule(organization = "xerces")
)
libraryDependencies += "org.jsoup" % "jsoup" % "1.8.3"
libraryDependencies += "org.openrdf.sesame" % "sesame-rio" % "2.8.5"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.4" % "test"
libraryDependencies += "org.json4s" %% "json4s-native" % "3.2.11"
resolvers += "Local Maven Repository" at "file:///Users/mueller/.m2/repository/"
resolvers += "Third Party" at "http://trianacode.org/maven/"
resolvers += "dws-public" at "https://breda.informatik.uni-mannheim.de/nexus/content/groups/public/"