-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
38 lines (31 loc) · 1.16 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
subprojects {
group 'com.github.toy.constructor'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.9
targetCompatibility = 1.9
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
apply plugin: "java"
repositories {
mavenCentral()
}
ext {
testNGVersion = '6.14.3'
hamcrestVersion = '2.0.0.0'
seleniumVersion = '3.13.0'
allureVersion = '2.6.0'
jacksonVersion = '2.9.6'
}
dependencies {
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
compile group: 'com.google.guava', name: 'guava', version: '25.0-jre'
testCompile group: 'org.testng', name: 'testng', version: testNGVersion
testCompile group: 'org.hamcrest', name: 'java-hamcrest', version: hamcrestVersion
compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jacksonVersion
compile group: 'com.fasterxml.jackson.module', name: 'jackson-module-jaxb-annotations', version: jacksonVersion
}
test {
useTestNG()
}
}