-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
36 lines (23 loc) · 1005 Bytes
/
build.sbt
File metadata and controls
36 lines (23 loc) · 1005 Bytes
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
name := """CachingTest"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.12.2"
libraryDependencies += guice
// Testing libraries for dealing with CompletionStage...
libraryDependencies += "org.assertj" % "assertj-core" % "3.6.2" % Test
libraryDependencies += "org.awaitility" % "awaitility" % "2.0.0" % Test
// Apache HTTP Components
libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.5.3"
libraryDependencies += "org.apache.httpcomponents" % "httpcore" % "4.4.6"
// https://mvnrepository.com/artifact/org.apache.ant/ant
libraryDependencies += "org.apache.ant" % "ant" % "1.8.2"
// https://mvnrepository.com/artifact/net.sourceforge.cssparser/cssparser
libraryDependencies += "net.sourceforge.cssparser" % "cssparser" % "0.9.24"
libraryDependencies ++= Seq(
ehcache
)
libraryDependencies ++= Seq(
cacheApi
)
// Make verbose tests
testOptions in Test := Seq(Tests.Argument(TestFrameworks.JUnit, "-a", "-v"))