-
Notifications
You must be signed in to change notification settings - Fork 99
/
build.sbt
59 lines (45 loc) · 2.2 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
resolvers += "Twitter Repository" at "https://maven.twttr.com/"
resolvers += "Sonatype-public" at "https://oss.sonatype.org/content/groups/public"
resolvers += "Restlet repository" at "https://maven.restlet.talend.com"
Keys.fork in Test := true
javaOptions in Test := Seq("-Dconfig.file=conf/test.conf", "-XX:MaxPermSize=512M", "-Xms512m", "-Xmx512m")
coverageExcludedPackages := "views.html.*;collins.graphs.templates.html.*;collins.controllers.ref.*;collins.controllers.javascript.*;collins.app.ref.*;collins.app.javascript.*;controllers.*;collins.app.*;collins.DbUtil;controllers.javascript.*;controllers.ref.*"
parallelExecution in Test := false
parallelExecution in IntegrationTest := false
scalaVersion := "2.11.7"
autoScalaLibrary := true
scalacOptions ++= Seq("-deprecation","-unchecked", "-feature")
scalacOptions += "-feature"
scalacOptions += "-language:postfixOps"
scalacOptions += "-language:implicitConversions"
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "2.3.13" % "test",
"com.google.guava" % "guava" % "20.0",
"com.jolbox" % "bonecp" % "0.8.0.RELEASE",
"nl.grons" %% "metrics-scala" % "2.1.5",
"com.addthis.metrics" % "reporter-config" % "2.3.1",
"mysql" % "mysql-connector-java" % "5.1.44",
"com.h2database" % "h2" % "1.4.196",
"org.apache.solr" % "solr-solrj" % "5.3.2",
"org.apache.solr" % "solr-core" % "5.3.2",
"org.apache.httpcomponents" % "httpclient" % "4.5.3",
"org.apache.httpcomponents" % "httpmime" % "4.5.3",
"commons-net" % "commons-net" % "3.6",
"org.bouncycastle" % "bcprov-jdk16" % "1.46",
"com.twitter" %% "util-core" % "6.45.0",
"org.jsoup" % "jsoup" % "1.10.3",
"org.squeryl" %% "squeryl" % "0.9.5-7",
"com.gilt" %% "jerkson" % "0.6.9",
"org.yaml" % "snakeyaml" % "1.18",
"com.typesafe.play" %% "play-jdbc" % "2.3.10",
"com.typesafe.play" %% "play-cache" % "2.3.10",
"com.google.code.findbugs" % "jsr305" % "3.0.2",
"org.webjars" %% "webjars-play" % "2.3.0-3",
"org.webjars" % "bootstrap" % "3.3.5",
"org.webjars" % "bootstrap-datepicker" % "1.4.0",
"org.webjars" % "datatables" % "1.10.7",
"org.webjars" % "datatables-plugins" % "1.10.7",
"org.webjars" % "jquery" % "2.1.4",
"com.hazelcast" % "hazelcast" % "3.5.2",
ws
) :+ filters