-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (21 loc) · 1006 Bytes
/
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
name := "Scala AIML"
version := "1.1.0"
scalaVersion := "2.12.4"
EclipseKeys.withSource := true
resolvers ++= Seq(
"snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"staging" at "http://oss.sonatype.org/content/repositories/staging" ,
"releases" at "http://oss.sonatype.org/content/repositories/releases"
)
scalacOptions ++= Seq("-deprecation", "-unchecked")
libraryDependencies ++= {
Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.0.6",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4",
"org.scalatest" %% "scalatest" % "3.0.4" % "test",
"org.mockito" % "mockito-core" % "2.13.0" % "test"
)
}
logBuffered in Test := false
// because of mockito parallel issue
parallelExecution in Test := false