-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (33 loc) · 717 Bytes
/
build.gradle
File metadata and controls
41 lines (33 loc) · 717 Bytes
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
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: "eclipse"
def spockVersion = '0.5-groovy-1.8'
repositories {
mavenCentral()
}
dependencies {
groovy 'org.codehaus.groovy:groovy-all:1.8.3'
testCompile 'junit:junit:4.8.1'
testCompile "org.spockframework:spock-core:$spockVersion"
testRuntime "com.h2database:h2:1.2.147"
}
test.testLogging.showStandardStreams = true
sourceSets {
main {
java { srcDirs = [] }
groovy { srcDir 'src' }
}
test {
java { srcDirs = [] }
groovy { srcDir 'test' }
}
}
idea {
project {
javaVersion = 1.6
jdkName = '1.6'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '1.0-rc-1'
}