forked from getgauge-examples/java-gradle-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (30 loc) · 678 Bytes
/
build.gradle
File metadata and controls
37 lines (30 loc) · 678 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
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'gauge'
group = "gauge-example-java"
version = "1.0.0"
description = "Gauge example using selenium web driver"
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:+',
'junit:junit:4.12',
'org.seleniumhq.selenium:selenium-java:3.141.0',
'io.github.bonigarcia:webdrivermanager:3.3.0'
)
}
gauge {
specsDir = 'specs'
}