-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbuild.sbt
39 lines (28 loc) · 1.01 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
name := "scala-impatient"
organization := "com.github.viktor-podzigun"
version := "1.0-SNAPSHOT"
scalaVersion := "2.11.7"
//fork := false
// to run coverage tests use:
//
// activator clean coverage test coverageReport
//
//
//coverageEnabled := true
coverageMinimum := 80
coverageFailOnMinimum := true
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.0.2",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4",
"org.scala-lang" % "scala-actors" % "2.11.5",
"junit" % "junit" % "4.11",
"org.hamcrest" % "hamcrest-all" % "1.3",
"org.scala-lang" % "scala-reflect" % "2.11.7" % "test",
"org.scalatest" %% "scalatest" % "2.2.4" % "test"
)
resolvers ++= Seq(
// "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
// "Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
)