forked from seleniumQuery/seleniumQuery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (34 loc) · 1.07 KB
/
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
apply plugin: "java"
group = 'io.github.seleniumquery'
version = '0.17.0-SNAPSHOT'
description = "seleniumQuery"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
}
dependencies {
compile('net.sourceforge.cssparser:cssparser:0.9.22')
compile('org.apache.commons:commons-lang3:3.5')
compile('org.seleniumhq.selenium:selenium-java:3.2.0')
compile('org.seleniumhq.selenium:selenium-remote-driver:3.2.0')
compile('org.seleniumhq.selenium:htmlunit-driver:2.25')
compile('com.codeborne:phantomjsdriver:1.4.1') {
exclude(module: 'selenium-java')
exclude(module: 'selenium-remote-driver')
}
compile('commons-logging:commons-logging:1.2')
compile('org.unbescape:unbescape:1.1.4.RELEASE')
testCompile('junit:junit:4.12') {
exclude(module: 'hamcrest-core')
}
testCompile('org.hamcrest:hamcrest-junit:2.0.0.0')
}
// https://docs.gradle.org/current/userguide/jacoco_plugin.html
apply plugin: "jacoco"
jacoco {
toolVersion = "0.7.9"
}