-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (28 loc) · 859 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
apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'java'
apply from: "cucumber.gradle"
ext {
cucumberJvmVersion = '1.2.6'
groovyVersion = '3.0.3'
seleniumVersion = '3.141.59'
appiumClientVersion = '7.3.0'
gebVersion = '3.4'
}
repositories {
mavenCentral()
}
configurations {
cucumberRuntime {
extendsFrom testRuntime
}
}
dependencies {
compile "org.codehaus.groovy:groovy-all:$groovyVersion"
testCompile "io.appium:java-client:$appiumClientVersion"
testCompile "org.gebish:geb-core:$gebVersion"
testCompile "org.seleniumhq.selenium:selenium-java:${seleniumVersion}"
//testCompile "info.cukes:cucumber-core:$cucumberJvmVersion"
testCompile "info.cukes:cucumber-groovy:$cucumberJvmVersion"
testCompile "info.cukes:cucumber-java:$cucumberJvmVersion"
}