-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
52 lines (32 loc) · 1.95 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
organization := "br.ufc.insightlab"
name := "linked-graphast"
version := "1.2.0"
publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(true)
publishConfiguration := publishConfiguration.value.withOverwrite(true)
resolvers += Resolver.mavenLocal
resolvers += "Insight Lab github Maven2 Repository" at "http://www.insightlab.ufc.br/maven-repo/"
libraryDependencies += "br.ufc.insightlab" % "graphast-core" % "1.1.0"
libraryDependencies += "br.ufc.insightlab" % "ror" % "1.0.0"
libraryDependencies += "org.wildfly.swarm" % "teiid-jdbc" % "2018.5.0"
libraryDependencies += "org.teiid" % "teiid-client" % "10.2.0"
libraryDependencies += "org.teiid" % "teiid-common-core" % "10.2.0"
libraryDependencies += "org.teiid" % "teiid-api" % "10.2.0"
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.6.10"
libraryDependencies += "org.scalaj" %% "scalaj-http" % "2.3.0"
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.6"
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.25"
libraryDependencies += "org.slf4j" % "slf4j-log4j12" % "1.7.25"
libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.11.1"
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.1"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"
libraryDependencies += "info.debatty" % "java-string-similarity" % "1.1.0"
libraryDependencies += "org.apache.jena" % "jena-arq" % "3.8.0"
libraryDependencies += "org.apache.jena" % "jena-core" % "3.8.0"
libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.23.1"
libraryDependencies += "org.neo4j" % "neo4j" % "3.4.7"
libraryDependencies += "org.neo4j" % "neo4j-kernel" % "3.4.7"
libraryDependencies += "org.neo4j" % "neo4j-cypher" % "3.4.7"
libraryDependencies += "com.carrotsearch" % "hppc" % "0.8.1"
libraryDependencies += "edu.washington.cs" % "figer_2.10" % "0"
scalaVersion := "2.11.8"
mappings in (Compile, packageBin) ~= { _.filter(!_._1.getName.endsWith(".model.gz")) }