-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (24 loc) · 1.39 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
name := "poc"
version := "0.1"
scalaVersion := "2.11.8"
val sparkVersion = "2.4.0"
val javacppVersion = "1.1"
val tessVersion = "3.4.2"
resolvers += "mvnrepository" at "http://mvnrepository.com/artifact/"
//libraryDependencies += "net.sourceforge.tess4j" % "tess4j" % "4.3.1"
// https://mvnrepository.com/artifact/org.apache.spark/spark-core
libraryDependencies += "org.apache.spark" %% "spark-core" % "2.4.0"
// https://mvnrepository.com/artifact/org.apache.spark/spark-streaming
libraryDependencies += "org.apache.spark" %% "spark-streaming" % "2.4.0"
// https://mvnrepository.com/artifact/org.apache.spark/spark-sql
libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.4.0"
// https://mvnrepository.com/artifact/org.apache.kafka/kafka-clients
libraryDependencies += "org.apache.kafka" % "kafka-clients" % "2.2.0"
// https://mvnrepository.com/artifact/org.apache.spark/spark-sql-kafka-0-10
libraryDependencies += "org.apache.spark" %% "spark-sql-kafka-0-10" % "2.4.0"
//libraryDependencies += "org.ghost4j" % "ghost4j" % "1.0.1"
//libraryDependencies += "net.sourceforge.tess4j" % "tess4j" % tessVersion
libraryDependencies += "org.apache.pdfbox" % "pdfbox" % "2.0.8"
libraryDependencies += "org.bytedeco.javacpp-presets" % "tesseract-platform" % "3.04.01-1.3"
libraryDependencies += "org.apache.pdfbox" % "pdfbox-tools" % "2.0.8"
//excludeDependencies += "org.apache.logging.log4j" % "log4j-slf4j-impl"