-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (24 loc) · 865 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
ext {
junitVersion = "4.11"
cucumberVersion = "1.2.3"
mockitoVersion = "1.9.5"
}
group 'paulmckenzie'
version '1.0-SNAPSHOT'
apply plugin: 'java'
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = 1.8
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: junitVersion
testCompile group: 'info.cukes', name: 'cucumber-java', version: cucumberVersion
testCompile group: 'info.cukes', name: 'cucumber-core', version: cucumberVersion
testCompile group: 'info.cukes', name: 'cucumber-junit', version: cucumberVersion
testCompile group: 'info.cukes', name: 'gherkin', version: cucumberVersion
testCompile group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
testCompile group: 'org.mockito', name: 'mockito-all', version: mockitoVersion
}