-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (28 loc) · 999 Bytes
/
Copy pathbuild.gradle
File metadata and controls
37 lines (28 loc) · 999 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
plugins {
id "com.github.samueltbrown.cucumber" version "0.9"
}
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'application'
mainClassName = "ApplicationEntryPoint"
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
configurations {
cucumberCompile.extendsFrom(testCompile)
}
dependencies {
compile group: 'com.intellij', name: 'forms_rt', version: '7.0.3'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
cucumberCompile sourceSets.main.output
cucumberCompile group: 'info.cukes', name: 'cucumber-java', version: '1.2.2'
cucumberCompile group: 'info.cukes', name: 'cucumber-junit', version: '1.2.2'
}
cucumber {
formats = ['pretty','json:build/cucumber.json','junit:build/cucumber.xml']
glueDirs = ['src/cucumber/java']
featureDirs = ['src/cucumber/resources']
}