-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
27 lines (14 loc) · 852 Bytes
/
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
name := "ansj4s"
version := "1.0"
scalaVersion := "2.11.7"
EclipseKeys.createSrc := EclipseCreateSrc.Default + EclipseCreateSrc.Resource
resolvers += "Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
resolvers += "Bigbata" at "http://nexus.bigbata.com/nexus/content/groups/public/"
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
libraryDependencies += "org.apache.spark" %% "spark-core" % "1.6.0"
libraryDependencies += "org.apache.spark" %% "spark-sql" % "1.6.0"
libraryDependencies += "org.apache.spark" %% "spark-mllib" % "1.6.0"
libraryDependencies += "org.apache.hadoop" % "hadoop-client" % "2.7.1"
libraryDependencies += "org.ansj" % "ansj_seg" % "3.0"
libraryDependencies += "org.nlpcn" % "nlp-lang" % "1.0.2"
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.36"