Skip to content

Commit 9accddb

Browse files
committed
Add solr and fix build
1 parent 002e30e commit 9accddb

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

build.sbt

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,16 @@ coverageHighlighting := true
3030

3131
javaOptions ++= Seq("-Xms512M", "-Xmx2048M", "-XX:MaxPermSize=2048M", "-XX:+CMSClassUnloadingEnabled")
3232

33-
libraryDependencies ++= Seq(
34-
"com.lucidwords.spark" % "spark-solr" % "3.0.2")
3533

36-
// additional libraries
3734
libraryDependencies ++= Seq(
35+
// algorithm providers
36+
"com.lucidworks.spark" % "spark-solr" % "3.0.2",
37+
// internals
38+
"org.scala-lang" % "scala-reflect" % "2.11.7",
39+
// testing libraries
3840
"org.scalatest" %% "scalatest" % "3.0.1",
3941
"org.scalacheck" %% "scalacheck" % "1.13.4",
40-
"com.holdenkarau" %% "spark-testing-base_2.1.1" % "0.7.0")
42+
"com.holdenkarau" %% "spark-testing-base" % "2.1.1_0.7.0")
4143

4244

4345
scalacOptions ++= Seq("-deprecation", "-unchecked")
@@ -49,7 +51,9 @@ resolvers ++= Seq(
4951
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
5052
"Second Typesafe repo" at "http://repo.typesafe.com/typesafe/maven-releases/",
5153
"Mesosphere Public Repository" at "http://downloads.mesosphere.io/maven",
52-
Resolver.sonatypeRepo("public")
54+
Resolver.sonatypeRepo("public"),
55+
// restlet has a seperate maven repo because idk
56+
"restlet" at "http://maven.restlet.com"
5357
)
5458

5559
// publish settings

0 commit comments

Comments
 (0)