-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
38 lines (20 loc) · 1016 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
35
36
37
38
scalaVersion := "2.10.0"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
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
offline := true
libraryDependencies += "org.scala-lang" % "scala-reflect" % "2.10.0"
libraryDependencies += "org.scala-lang" % "scala-compiler" % "2.10.0"
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1"
addCommandAlias("partie1-1", "~ test-only premiers_pas")
addCommandAlias("partie1-2", "~ test-only pas_suivant")
addCommandAlias("partie2", "~ test-only we_need_to_go_deeper")
addCommandAlias("partie3", "~ test-only cons_et_nil")
addCommandAlias("partie4", "~ test-only type_classes")
addCommandAlias("partie5", "~ test-only un_sac_avec_des_items")
addCommandAlias("partie6", "~ test-only bonus_event_sourcing")
addCommandAlias("go", "~ test-only HandsOnScala")