forked from JayStGelais/cucumber-java-code-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (24 loc) · 632 Bytes
/
Copy pathbuild.gradle
File metadata and controls
31 lines (24 loc) · 632 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.github.samueltbrown:gradle-cucumber-plugin:0.8"
}
}
repositories {
jcenter()
}
apply plugin: "com.github.samueltbrown.cucumber"
apply plugin: 'java'
apply plugin: "idea"
apply plugin: "eclipse"
dependencies {
testCompile "info.cukes:cucumber-java:1.2.2"
cucumberRuntime sourceSets.test.output
}
project.tasks.cucumber.dependsOn build
cucumber {
formats = ['pretty','json:build/report/cucumber.json','junit:build/report/cucumber.xml','html:build/report/cucumber/']
featureDirs = ['src/test/features']
}