-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
34 lines (23 loc) · 964 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
30
31
32
33
34
name := "Scala Koans"
version := "1.0"
scalaVersion := "2.9.2"
traceLevel := -1
logLevel := Level.Info
// disable printing timing information, but still print [success]
showTiming := false
// disable printing a message indicating the success or failure of running a task
showSuccess := false
// append -deprecation to the options passed to the Scala compiler
scalacOptions ++= Seq("-deprecation", "-unchecked")
// disable updating dynamic revisions (including -SNAPSHOT versions)
offline := true
// Copy all managed dependencies to <build-root>/lib_managed/
// This is essentially a project-local cache and is different
// from the lib_managed/ in sbt 0.7.x. There is only one
// lib_managed/ in the build root (not per-project).
retrieveManaged := true
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "1.8" % "test" withSources() withJavadoc()
)
// add a sequence of maven-style repositories
//resolvers ++= Seq("Name" at "URL")