forked from ical4j/ical4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
267 lines (238 loc) · 8.01 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.hidetake:gradle-ssh-plugin:1.1.3'
}
}
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.8.1'
id "nebula.provided-base" version "3.0.3"
id "com.jfrog.bintray" version "1.7.3"
id "net.ltgt.errorprone" version "0.0.16"
}
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'groovy'
apply plugin: 'osgi'
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'jacoco'
apply plugin: 'signing'
apply plugin: 'pl.allegro.tech.build.axion-release'
apply plugin: 'nebula.optional-base'
apply from: 'gradle/dist.gradle'
group = 'org.mnode.ical4j'
description = '''
A Java library for reading and writing iCalendar (*.ics) files
'''
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext {
slf4jVersion = '1.7.25'
groovyVersion = '2.4.15'
}
/*
githubPages {
// repoUri = 'https://github.com/ical4j/ical4j.github.io.git'
repoUri = 'git@github.com:ical4j/ical4j.github.io.git'
pages {
from javadoc.outputs.files
}
}
*/
/*
github {
/* Wiki repo will be calculated from this. *
repo = 'git@github.com:ical4j/ical4j.git'
wiki {
/*
This is the same as used in Gradle Copy Task.
Please refer to Gradle documentation for information.
*
from javadoc.outputs.files {
into 'ical4j/javadoc'
}
into { "javadoc/$project.release.version" }
}
}
*/
repositories {
mavenCentral()
}
dependencies {
api "org.slf4j:slf4j-api:$slf4jVersion",
'commons-codec:commons-codec:1.10',
'org.apache.commons:commons-lang3:3.6',
'org.apache.commons:commons-collections4:4.1'
implementation 'javax.cache:cache-api:1.0.0', optional
implementation "org.codehaus.groovy:groovy-all:$groovyVersion", optional
compileOnly 'biz.aQute.bnd:bndlib:2.3.0'
testImplementation "org.codehaus.groovy:groovy-all:$groovyVersion",
'org.spockframework:spock-core:1.1-groovy-2.4',
'commons-io:commons-io:2.4',
'org.ccil.cowan.tagsoup:tagsoup:1.2.1',
"org.slf4j:slf4j-log4j12:$slf4jVersion",
'org.ehcache:ehcache:3.4.0'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled project.hasProperty('jacoco_htmlReport') \
&& 'true' == project.property('jacoco_htmlReport')
}
}
javadoc {
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from 'build/docs/javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
jar {
manifest {
instruction 'Import-Package', 'groovy.*;resolution:=optional, org.codehaus.groovy*;resolution:=optional, *'
}
}
artifacts {
archives jar
archives javadocJar
archives sourcesJar
}
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
scmVersion {
tag {
prefix = 'ical4j'
branchPrefix = [
'ical4j-1.x-maintenance' : 'jdk14_ical4j'
]
branchPrefix = [
'ical4j-2.x-maintenance' : 'jdk7_ical4j'
]
}
versionCreator 'versionWithBranch'
branchVersionCreator = [
'master': 'simple'
]
branchVersionCreator = [
'ical4j-1.x-maintenance': 'simple'
]
branchVersionCreator = [
'ical4j-2.x-maintenance': 'simple'
]
}
version = scmVersion.version
ext {
isReleaseVersion = !version.endsWith("SNAPSHOT")
// sonatype credentials
sonatype_username = project.hasProperty('sonatype_username') ? project.getProperty('sonatype_username') : ''
sonatype_password = project.hasProperty('sonatype_password') ? project.getProperty('sonatype_password') : ''
// bintray credentials
bintray_user = project.hasProperty('bintray_user') ? project.getProperty('bintray_user') : ''
bintray_key = project.hasProperty('bintray_key') ? project.getProperty('bintray_key') : ''
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
// artefact management
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: sonatype_username, password: sonatype_password)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots") {
authentication(userName: sonatype_username, password: sonatype_password)
}
// maven project model
pom.project {
name project.name
packaging 'jar'
description project.description
url 'http://ical4j.github.io'
// source code management
scm {
url 'https://github.com/ical4j/ical4j'
connection 'scm:git@github.com:ical4j/ical4j.git'
developerConnection 'scm:git@github.com:ical4j/ical4j.git'
}
// open source license
licenses {
license {
name 'iCal4j - License'
url 'https://raw.githubusercontent.com/ical4j/ical4j/master/LICENSE'
distribution 'repo'
}
}
// contributors
developers {
developer {
id 'fortuna'
name 'Ben Fortuna'
}
}
}
}
}
}
publishing {
publications {
mavenArtifacts(MavenPublication) {
from components.java
artifact javadocJar
artifact sourcesJar
pom.withXml {
asNode().appendNode('name', project.name)
asNode().appendNode('description', project.description)
asNode().appendNode('url', 'http://ical4j.github.io')
def scmNode = asNode().appendNode('scm')
scmNode.appendNode('url', 'https://github.com/ical4j/ical4j')
scmNode.appendNode('connection', 'scm:git@github.com:ical4j/ical4j.git')
scmNode.appendNode('developerConnection', 'scm:git@github.com:ical4j/ical4j.git')
def licenseNode = asNode().appendNode('licenses').appendNode('license')
licenseNode.appendNode('name', 'iCal4j - License')
licenseNode.appendNode('url', 'https://raw.githubusercontent.com/ical4j/ical4j/master/LICENSE')
licenseNode.appendNode('distribution', 'repo')
def developerNode = asNode().appendNode('developers').appendNode('developer')
developerNode.appendNode('id', 'fortuna')
developerNode.appendNode('name', 'Ben Fortuna')
}
}
}
}
bintray {
user = bintray_user
key = bintray_key
pkg {
repo = 'maven'
name = 'ical4j'
userOrg = 'ical4j'
licenses = ['BSD']
vcsUrl = 'https://github.com/ical4j/ical4j.git'
version {
name = scmVersion.version
desc = "iCal4j $scmVersion.version"
released = new Date()
vcsTag = "ical4j-$scmVersion.version"
gpg {
sign = isReleaseVersion
}
mavenCentralSync {
sync = isReleaseVersion
user = sonatype_username //OSS user token: mandatory
password = sonatype_password //OSS user password: mandatory
// close = '0' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
}
}
}
// configurations = ['archives']
publications = ['mavenArtifacts']
}