-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
62 lines (47 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
apply plugin: 'java'
apply plugin: "jacoco"
apply plugin: 'maven-publish'
apply plugin: 'idea'
sourceCompatibility = 1.8
version = '1.1'
repositories {
mavenCentral()
flatDir {
dirs 'java/libs'
}
}
sourceSets {
main {
java {
srcDir 'java/src/'
}
resources {
srcDirs = ['java/resources']
}
}
}
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
jacoco {
toolVersion = "0.7.6.201602180812"
reportsDir = file("$buildDir/customJacocoReportDir")
}
dependencies {
// Main
// compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'com.google.guava', name: 'guava', version: '20.0'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.1'
compile group: 'net.htmlparser.jericho', name: 'jericho-html', version: '3.3'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.eclipse.jetty', name: 'jetty-webapp', version: '9.4.8.v20171121'
compile group: 'org.seleniumhq.selenium', name: 'selenium-chrome-driver', version: '3.0.0'
compile group: 'org.seleniumhq.selenium', name: 'selenium-server', version: '3.0.0'
// Docker logger dependencies
compile 'com.spotify:docker-client:6.0.0'
compile 'org.slf4j:slf4j-nop:1.7.21'
// Testing
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
}