-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
46 lines (38 loc) · 925 Bytes
/
build.gradle
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
41
42
43
44
45
46
apply plugin: 'application'
apply plugin: 'scala'
apply plugin: 'idea'
version = '1.0'
repositories {
maven {
url "http://repository.excilys.com/content/groups/public"
}
mavenCentral()
}
dependencies {
compile "org.scala-lang:scala-library:2.10.3"
compile "org.scala-lang:scala-compiler:2.10.3"
compile 'io.gatling:gatling-core:2.0.0-M3a'
compile 'com.rabbitmq:amqp-client:3.1.3'
compile "com.jsuereth:scala-arm_2.10:1.3"
compile fileTree(dir: 'lib', include: '*.jar')
testCompile 'org.scalatest:scalatest_2.10:2.0'
}
sourceSets {
test {
scala {
srcDirs = ['src/test/scala', 'src/simulations/scala']
}
}
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
compileScala {
scalaCompileOptions.useCompileDaemon = true
}
tasks.withType(ScalaCompile) {
scalaCompileOptions.useAnt = false
}