-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
20 lines (17 loc) · 1004 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name := "scala-scraper-ex"
version := "0.1"
scalaVersion := "2.12.4"
libraryDependencies += "net.ruippeixotog" %% "scala-scraper" % "2.1.0"
libraryDependencies += "com.github.etaty" %% "rediscala" % "1.8.0"
libraryDependencies += "com.amazonaws" % "aws-java-sdk" % "1.3.11"
libraryDependencies += "commons-io" % "commons-io" % "2.6"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
libraryDependencies += "com.typesafe.akka" %% "akka-http" % "10.0.9"
libraryDependencies += "org.typelevel" %% "cats" % "0.9.0"
libraryDependencies += "io.github.bonigarcia" % "webdrivermanager" % "2.1.0"
libraryDependencies += "org.seleniumhq.selenium" % "selenium-chrome-driver" % "3.11.0"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.8.0"
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % "2.5.11"
assemblyJarName in assembly := "scraper_17042018_2.jar"
mainClass in assembly := Some("Main")