forked from ical4j/ical4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
249 lines (219 loc) · 7.79 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
import aQute.bnd.gradle.Bundle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.hidetake:gradle-ssh-plugin:2.10.1'
}
}
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.10.2'
id "nebula.provided-base" version "3.0.3"
id "com.jfrog.bintray" version "1.8.4"
id "net.ltgt.errorprone" version "1.2.1" apply false
id "biz.aQute.bnd.builder" version "5.1.1"
}
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'groovy'
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.5.4'
}
repositories {
mavenCentral()
}
dependencies {
// errorprone "com.google.errorprone:error_prone_core:2.3.3"
// errorproneJavac "com.google.errorprone:javac:9+181-r4173-1"
api "org.slf4j:slf4j-api:$slf4jVersion",
'commons-codec:commons-codec:1.11',
'org.apache.commons:commons-lang3:3.8.1',
'org.apache.commons:commons-collections4:4.1',
'com.sun.mail:javax.mail:1.6.2'
implementation 'javax.cache:cache-api:1.0.0', optional
implementation "org.codehaus.groovy:groovy-all:$groovyVersion", optional
implementation "org.codehaus.groovy:groovy-dateutil:$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',
'org.ccil.cowan.tagsoup:tagsoup:1.2.1',
"org.slf4j:slf4j-log4j12:$slf4jVersion",
'org.ehcache:ehcache:3.4.0', 'com.sun.mail:javax.mail:1.5.4'
}
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 bundle(type: Bundle) {
from sourceSets.main.output
bndfile = 'bnd.bnd'
}
task javadocJar(type: Jar, dependsOn: javadoc) {
archiveClassifier = 'javadoc'
from 'build/docs/javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
archiveClassifier = 'sources'
}
jar.enabled = false
build.dependsOn bundle
artifacts {
archives bundle
archives javadocJar
archives sourcesJar
}
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:[email protected]:ical4j/ical4j.git'
developerConnection 'scm:[email protected]: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:[email protected]:ical4j/ical4j.git')
scmNode.appendNode('developerConnection', 'scm:[email protected]: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')
}
}
}
}
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
// sign configurations.archives
sign publishing.publications.mavenArtifacts
}
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']
}