-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
25 lines (13 loc) · 770 Bytes
/
build.sbt
File metadata and controls
25 lines (13 loc) · 770 Bytes
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
name := "EvoGraph"
version := "1.0"
scalaVersion := "2.11.8"
javacOptions ++= Seq("-source", "1.8", "-g:none")
scalacOptions ++= Seq("-optimise", "-optimize","-target:jvm-1.8", "-Yinline-warnings")
libraryDependencies += "it.unimi.dsi" % "fastutil" % "8.1.1"
libraryDependencies += "it.unimi.dsi" % "dsiutils" % "2.4.2"
libraryDependencies += "org.apache.spark" %% "spark-core" % "2.3.2"
libraryDependencies += "org.apache.spark" %% "spark-graphx" % "2.3.2"
libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.3.2"
libraryDependencies += "org.apache.hadoop" % "hadoop-client" % "2.7.7"
lazy val root = (project in file(".")).dependsOn(dependencyTrillionG)
lazy val dependencyTrillionG = RootProject(uri("https://github.com/chan150/TrillionG.git"))