-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 961 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
34
35
36
37
38
39
40
41
42
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'gauge'
group = "gauge-example-java"
version = "1.0.0"
sourceCompatibility = 1.7
targetCompatibility = 1.7
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.thoughtworks.gauge.gradle:gauge-gradle-plugin:+'
}
}
repositories {
mavenCentral()
}
dependencies {
compile(
'com.thoughtworks.gauge:gauge-java:0.5.1',
'junit:junit:4.12',
'org.seleniumhq.selenium:selenium-chrome-driver:3.0.1',
'org.seleniumhq.selenium:selenium-support:3.0.1',
'org.seleniumhq.selenium:selenium-edge-driver:3.0.1',
'org.seleniumhq.selenium:selenium-ie-driver:3.0.1',
'org.seleniumhq.selenium:selenium-firefox-driver:3.0.1',
'com.alibaba:fastjson:1.2.24',
'mysql:mysql-connector-java:5.1.24'
)
}
gauge {
specsDir = 'specs'
env = 'chrome'
}