-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (23 loc) · 794 Bytes
/
Copy pathbuild.gradle
File metadata and controls
28 lines (23 loc) · 794 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
plugins {
id 'java'
}
group 'com.shankar.testing'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
// Standard Maven
mavenCentral()
}
dependencies {
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59'
// https://mvnrepository.com/artifact/org.testng/testng
testCompile group: 'org.testng', name: 'testng', version: '6.14.3'
// https://mvnrepository.com/artifact/org.assertj/assertj-core
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.11.1'
testCompile("io.github.bonigarcia:webdrivermanager:3.6.1")
}
test {
useTestNG()
}