forked from dom4j/dom4j
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
128 lines (105 loc) · 2.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'maven'
apply plugin: 'signing'
group = 'org.dom4j'
archivesBaseName = 'dom4j'
sourceCompatibility = 1.8
tasks.withType(JavaCompile) + tasks.withType(Javadoc) {
options.encoding = 'UTF-8'
options.charSet = options.encoding
}
repositories {
mavenCentral()
}
dependencies {
compile(
'jaxen:jaxen:1.1.6',
)
compileOnly(
'javax.xml.stream:stax-api:1.0-2',
'net.java.dev.msv:xsdlib:2013.6.1',
'xpp3:xpp3:1.1.4c',
'pull-parser:pull-parser:2',
'javax.xml.bind:jaxb-api:2.2.12',
)
testCompile(
'org.testng:testng:6.8.21',
'xerces:xercesImpl:2.11.0',
'xalan:xalan:2.7.2',
)
}
sourceSets {
test {
compileClasspath += configurations.compileOnly
runtimeClasspath += configurations.compileOnly
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
test {
useTestNG()
}
jacocoTestReport {
reports {
xml.enabled true
}
}
check.dependsOn 'jacocoTestReport'
if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment {
deployment -> signing.signPom(deployment)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'dom4j'
packaging 'jar'
description 'flexible XML framework for Java'
url 'http://dom4j.github.io/'
licenses {
license {
name 'BSD 3-clause New License'
url 'https://github.com/dom4j/dom4j/blob/master/LICENSE'
}
}
developers {
developer {
name 'Filip Jirsák'
email 'filip@jirsak.org'
url 'https://github.com/FilipJirsak'
}
}
scm {
connection 'scm:git:git@github.com:dom4j/dom4j.git'
developerConnection 'scm:git:git@github.com:dom4j/dom4j.git'
url 'git@github.com:dom4j/dom4j.git'
}
}
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.1'
}