forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
342 lines (263 loc) · 9.77 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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/*
* This build file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* user guide available at https://docs.gradle.org/4.5/userguide/java_library_plugin.html
*/
// Apply the java-library plugin to add support for Java Library
apply plugin: 'java-library'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'signing'
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
mavenCentral()
}
dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api 'org.apache.commons:commons-math3:3.6.1'
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:20.0'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
compile 'com.google.code.gson:gson:2.8.2'
compile 'com.sun.jersey:jersey-server:1.19.4'
}
def pomConfig = {
licenses {
license([:]) {
name "MIT License"
url "http://opensource.org/licenses/MIT"
distribution "repo"
}
}
}
//Publishing tasks-
//Maven Central Snapshot: publishSnapshotPublicationToMavenRepository
//Maven Central Release: publishMavenCentralReleasePublicationToMaven2Repository
//Bintray Snapshot: publishSnapshotPublicationToMaven3Repository
//Bintray Release: uploadArchives
publishing {
publications {
maven(MavenPublication) {
groupId 'com.microsoft.graph'
artifactId 'microsoft-graph'
version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenArtifactSuffix}"
from components.java
artifact sourceJar
pom.withXml {
def root = asNode()
root.appendNode('name', 'Microsoft Graph SDK for Java')
root.appendNode('url', 'https://github.com/microsoftgraph/msgraph-sdk-java')
root.children().last() + pomConfig
def pomFile = file("${project.buildDir}/libs/microsoft-graph.pom")
writeTo(pomFile)
}
}
Snapshot(MavenPublication) {
customizePom(pom)
groupId 'com.microsoft.graph'
artifactId 'microsoft-graph'
version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}"
from components.java
pom.withXml {
def pomFile = file("${project.buildDir}/generated-pom.xml")
writeTo(pomFile)
}
artifact(sourceJar) {
classifier = 'sources'
}
artifact(javadocJar) {
classifier = 'javadoc'
}
}
mavenCentralRelease(MavenPublication) {
customizePom(pom)
groupId 'com.microsoft.graph'
artifactId 'microsoft-graph'
version "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}"
from components.java
pom.withXml {
def pomFile = file("${project.buildDir}/generated-pom.xml")
writeTo(pomFile)
def pomAscFile = signing.sign(pomFile).signatureFiles[0]
artifact(pomAscFile) {
classifier = null
extension = 'pom.asc'
}
}
artifact(sourceJar) {
classifier = 'sources'
}
artifact(javadocJar) {
classifier = 'javadoc'
}
project.tasks.signArchives.signatureFiles.each {
artifact(it) {
def matcher = it.file =~ /-(sources|javadoc)\.jar\.asc$/
if(matcher.find()){
classifier = matcher.group(1)
}
else{
classifier = null
}
extension = 'jar.asc'
}
}
}
}
repositories {
maven {
url = project.property('mavenCentralSnapshotUrl')
credentials {
if (project.rootProject.file('local.properties').exists()) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
username = properties.getProperty('sonatypeUsername')
password = properties.getProperty('sonatypePassword')
}
}
}
maven {
url = project.property('mavenCentralReleaseUrl')
credentials {
if (project.rootProject.file('local.properties').exists()) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
username = properties.getProperty('sonatypeUsername')
password = properties.getProperty('sonatypePassword')
}
}
}
maven {
url = project.property('mavenBintraySnapshotUrl')
credentials {
if (project.rootProject.file('local.properties').exists()) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
username = (properties.containsKey('bintray.user')) ? properties.getProperty('bintray.user').toLowerCase() : "BINTRAY_USERNAME"
password = properties.getProperty('bintray.apikey')
}
}
}
}
}
task sourceJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allJava
}
compileJava {
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
def getVersionCode() {
return mavenMajorVersion.toInteger() * 10000 + mavenMinorVersion.toInteger() * 100 + mavenPatchVersion.toInteger()
}
def getVersionName() {
return "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenArtifactSuffix}"
}
uploadArchives {
def bintrayUsername = ""
def bintrayApikey = ""
if (project.rootProject.file('local.properties').exists()) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintrayUsername = properties.getProperty('bintray.user')
bintrayApikey = properties.getProperty('bintray.apikey')
}
configuration = configurations.archives
repositories.mavenDeployer {
pom {
setGroupId project.mavenGroupId
setArtifactId project.mavenArtifactId
setVersion getVersionName()
}
repository (url: project.mavenRepoUrl) {
url = url + "/" + getVersionName()
authentication(
// put these values in local file ~/.gradle/gradle.properties
userName: project.hasProperty("bintrayUsername") ? project.bintrayUsername : bintrayUsername,
password: project.hasProperty("bintrayApikey") ? project.bintrayApikey : bintrayApikey
)
}
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourceJar
archives javadocJar
}
signing {
sign configurations.archives
}
tasks.withType(Sign)*.enabled = mavenCentralPublishingEnabled.toBoolean()
def customizePom(pom) {
pom.withXml {
def root = asNode()
root.dependencies.removeAll { dep ->
dep.scope == "test"
}
root.children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST
description 'Microsoft Graph SDK'
name 'Microsoft Graph Java SDK'
url 'https://github.com/microsoftgraph/msgraph-sdk-java'
organization {
name 'Microsoft'
url 'https://github.com/microsoftgraph/msgraph-sdk-java'
}
issueManagement {
system 'GitHub'
url 'https://github.com/microsoftgraph/msgraph-sdk-java/issues'
}
licenses {
license {
name "MIT License"
url "http://opensource.org/licenses/MIT"
distribution "repo"
}
}
scm {
url 'https://github.com/microsoftgraph/msgraph-sdk-java'
connection 'scm:git:git://github.com/microsoftgraph/msgraph-sdk-java.git'
developerConnection 'scm:git:ssh://[email protected]:microsoftgraph/msgraph-sdk-java.git'
}
developers {
developer {
name 'Microsoft'
}
}
}
}
}
gradle.taskGraph.whenReady { taskGraph ->
if (project.rootProject.file('local.properties').exists()) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
tasks.withType(Sign)*.enabled = (properties.containsKey('enableSigning')) ? properties.getProperty('enableSigning').toBoolean() : false
allprojects { ext."signing.keyId" = properties.getProperty('signing.keyId') }
allprojects { ext."signing.secretKeyRingFile" = properties.getProperty('signing.secretKeyRingFile') }
allprojects { ext."signing.password" = properties.getProperty('signing.password') }
}
}
model {
tasks.generatePomFileForMavenCentralReleasePublication {
destination = file("$buildDir/generated-pom.xml")
}
tasks.publishMavenCentralReleasePublicationToMavenLocal {
dependsOn project.tasks.signArchives
}
tasks.publishMavenCentralReleasePublicationToMaven2Repository {
dependsOn project.tasks.signArchives
}
}