-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (21 loc) · 984 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
39
40
name := "rasterfun"
version := "0.1"
scalaVersion := "2.9.1"
// Repositories
resolvers += "Guicefruit Repository" at "http://guiceyfruit.googlecode.com/svn/repo/releases"
resolvers += "Sonatype Public" at "https://oss.sonatype.org/content/groups/public/"
// Inversion of control:
// libraryDependencies += "com.google.inject" % "guice" % "3.0"
// Logging:
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.6.4"
libraryDependencies += "org.slf4j" % "slf4j-log4j12" % "1.6.4"
libraryDependencies += "log4j" % "log4j" % "1.2.16"
// Testing:
libraryDependencies += "com.novocode" % "junit-interface" % "0.10-M1" % "test"
// libraryDependencies += "org.scalatest" %% "scalatest" % "1.7.2" % "test"
// Bytecode generation
libraryDependencies += "org.codehaus.janino" % "janino" % "2.6.1"
// Config files:
libraryDependencies += "org.yaml" % "snakeyaml" % "1.11-SNAPSHOT"
// Layout
libraryDependencies += "com.miglayout" % "miglayout" % "3.7.4" // classifier "swing"