forked from atolstykh/c14n2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (30 loc) · 1.34 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
group = 'ru.relex'
description = 'c14n2'
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
}
// buildDir = new File(rootProject.projectDir, "out/")
dependencies {
testCompile 'org.testng:testng:6.2.1'
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.6'
testCompile 'com.google.inject:guice:3.0'
testCompile ('org.uncommons:reportng:1.1.2') {
exclude group: 'org.testng', module: 'testng'
}
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.6'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
compile 'xalan:xalan:2.7.1'
//provided (group: 'org.slf4j', name: 'slf4j-api', version: '1.7.6') {
/* This dependency was originally in the Maven provided scope, but the project was not of type war.
This behavior is not yet supported by Gradle, so this dependency has been converted to a compile dependency.
Please review and delete this closure when resolved. */
//}
//provided(group: 'xalan', name: 'xalan', version: '2.7.1') {
/* This dependency was originally in the Maven provided scope, but the project was not of type war.
This behavior is not yet supported by Gradle, so this dependency has been converted to a compile dependency.
Please review and delete this closure when resolved. */
//}
}
test.useTestNG()