-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (24 loc) · 854 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
33
apply plugin: "groovy"
apply plugin: 'java'
description = "Geb Workshop"
version = '1.0'
sourceCompatibility = 1.7
repositories {
mavenCentral()
}
configurations {
testCompile.transitive = true
}
dependencies {
testCompile "org.codehaus.groovy:groovy-all:2.4.1"
testCompile "org.gebish:geb-spock:0.10.0"
testCompile "org.spockframework:spock-core:1.0-groovy-2.4"
testCompile "org.seleniumhq.selenium:selenium-firefox-driver:2.45.0"
testCompile "org.seleniumhq.selenium:selenium-chrome-driver:2.45.0"
testRuntime "org.seleniumhq.selenium:selenium-support:2.43.1"
}
test {
systemProperties "geb.build.reportsDir": "$reportsDir/geb"
// Change this path to where the demo app is located on your file system.
systemProperties "geb.build.baseUrl": "file:///D:/git/geb_workshop/src/test/resources/demoApp/"
}