-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
44 lines (35 loc) · 1.66 KB
/
build.sbt
File metadata and controls
44 lines (35 loc) · 1.66 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
name := "SANSA-Template-SBT-Flink"
version := "0.6.1-SNAPSHOT"
scalaVersion := "2.11.11"
val varscalaVersion = "2.11.11"
val varscalaBinaryVersion = "2.11"
val flinkVersion = "1.8.0"
val sansaVersion = "0.6.1-SNAPSHOT"
libraryDependencies ++= Seq(
"org.apache.flink" %% "flink-scala" % flinkVersion,
"org.apache.flink" %% "flink-streaming-scala" % flinkVersion,
"org.apache.flink" %% "flink-clients" % flinkVersion
)
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-library" % varscalaVersion
)
// | Resolvers
resolvers ++= Seq(
"AKSW Maven Releases" at "http://maven.aksw.org/archiva/repository/internal",
"AKSW Maven Snapshots" at "http://maven.aksw.org/archiva/repository/snapshots",
"oss-sonatype" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Apache repository (snapshots)" at "https://repository.apache.org/content/repositories/snapshots/",
"Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/", "NetBeans" at "http://bits.netbeans.org/nexus/content/groups/netbeans/", "gephi" at "https://raw.github.com/gephi/gephi/mvn-thirdparty-repo/",
Resolver.defaultLocal,
Resolver.mavenLocal,
"Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository",
"Apache Staging" at "https://repository.apache.org/content/repositories/staging/"
)
// | SANSA Layers
libraryDependencies ++= Seq(
"net.sansa-stack" %% "sansa-rdf-flink" % sansaVersion,
"net.sansa-stack" %% "sansa-owl-flink" % sansaVersion,
"net.sansa-stack" %% "sansa-inference-flink" % sansaVersion,
"net.sansa-stack" %% "sansa-query-flink" % sansaVersion,
"net.sansa-stack" %% "sansa-ml-flink" % sansaVersion
)