-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild-nexus.gradle
362 lines (304 loc) · 8.38 KB
/
build-nexus.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
/*
* Nexus Repository Integration
*/
allprojects {
apply plugin: "net.saliman.properties"
apply plugin: "nu.studer.credentials"
/* We accept crypted credentials via "nu.studer.credentials" or plain
* credentials via gradle-local.properties.
*/
ext.registryUsername = credentials.user ?: project.properties['nexus.username']
ext.registryPassword = credentials.password ?: project.properties['nexus.password']
repositories {
mavenLocal()
mavenCentral()
String publicURL = project.properties['nexus.public.url']
String releasesURL = project.properties['nexus.releases.url']
String snapshotsURL = project.properties['nexus.snapshots.url']
if (publicURL) {
maven {
credentials {
username project.properties['registryUsername']
password project.properties['registryPassword']
}
url publicURL
}
}
if (snapshotsURL) {
maven {
credentials {
username project.properties['registryUsername']
password project.properties['registryPassword']
}
url snapshotsURL
}
}
if (releasesURL) {
maven {
credentials {
username project.properties['registryUsername']
password project.properties['registryPassword']
}
url releasesURL
}
}
}
}
/************************
* RELEASE vs SNAPSHOTS *
************************/
apply plugin: "org.ajoberstar.grgit"
if (grgit != null) {
logger.debug("Git ${grgit.branch.current().name}")
ext.gitClone = true
ext.gitBranchName = grgit.branch.current().name
if (ext.gitBranchName.startsWith("release")) {
ext.gitSnapshotsBranch = false
ext.registrySuffix = ""
}
else if (ext.gitBranchName.startsWith("development")) {
ext.gitSnapshotsBranch = true
ext.registrySuffix = "-SNAPSHOT"
}
else if ("master".equals(gitBranchName)) {
ext.gitSnapshotsBranch = true
ext.registrySuffix = "-SNAPSHOT"
}
else {
ext.gitSnapshotsBranch = true
def issueId = gitBranchName =~ /^(\d+)/
if (issueId.size() > 0) {
ext.gitIssueId = issueId[0][1]
ext.registrySuffix = "-${gitIssueId}-SNAPSHOT"
}
else if ("HEAD".equals(gitBranchName)) {
def lastTag = grgit.describe()
println "Git lastTag ${lastTag}"
if (lastTag != null && (lastTag.startsWith("rel_") || lastTag.startsWith("MP_v"))) {
ext.gitSnapshotsBranch = false
ext.registrySuffix = ""
}
else {
ext.registrySuffix = "-SNAPSHOT"
}
}
else {
//throw new GradleException("Unsupported branch name ${gitBranchName}. Manage it!!")
println ""
println "WARNING:"
println "WARNING: Unsupported branch name ${gitBranchName}. Manage it!!"
println "WARNING:"
println ""
ext.gitSnapshotsBranch = true
ext.registrySuffix = "-SNAPSHOT"
}
}
//println "${gitSnapshotsBranch} ${registrySuffix}"
logger.debug("${gitSnapshotsBranch} ${registrySuffix}")
}
else {
println "No Git"
ext.gitClone = false
if (project.properties['nexus.release.mode'] == "true") {
ext.registrySuffix = ""
}
else {
ext.registrySuffix = "-SNAPSHOT"
}
}
/*************************
* TRACK CHANGED MODULES *
*************************/
// Will collect path of modules with changes since last release
Set changedProjects = []
ext.changesMode = false;
def changesModeEnabled = Boolean.valueOf(project.properties["changes.mode.enabled"])
def changesVerboseMode = Boolean.valueOf(project.properties["changes.verbose.mode"])
//if (changesModeEnabled && grgit != null && project.properties['gitSnapshotsBranch'] == true) {
if (changesModeEnabled && grgit != null) {
println "Git Branch ${grgit.branch.current().name}"
def head = grgit.head();
logger.debug("KK head=${head}")
// Identity the most recent release tag reachable.
// WARNING: Seems GitHut release Tag are not annotated tags
def describeTag = grgit.describe(longDescr: true, match: ["rel_*"], tags: true)
if (describeTag == null) {
println "No releases found"
}
else {
ext.changesMode = true;
File smcChangesBarrier = new File(rootDir, ".smc_changes_barrier")
if (smcChangesBarrier.exists()) {
def content = smcChangesBarrier as String[]
if (content.length > 0 && describeTag.startsWith(content[0])) {
ext.changesMode = false;
}
}
}
def changesModeType = project.properties["changes.mode.type"]
def matchNames = [
"/package.json", "/package-loack.json", "/gulpfile.js", "/build.gradle",
"/bnd.bnd"
]
if (ext.changesMode) {
def collectChangedPath = {
def p = "/" + it.toLowerCase()
def v = false
if (p.startsWith("/modules/")) {
if (p.equals("/modules/build.gradle")) {
v = false
}
else if (p.contains("/src/")) {
v = true
changedProjects.add(p.minus(~/\/src\/.*$/).replaceAll("/", ":"))
}
else {
matchNames.each {
if (!v && p.endsWith(it)) {
v = true
changedProjects.add(p.minus(it).replaceAll("/", ":"))
}
}
}
if (v && changesVerboseMode) {
println " ${p}"
}
}
else if (p.startsWith("/themes/")) {
if (p.equals("/themes/build.gradle")) {
v = false
}
else if (p.contains("/src/")) {
v = true
changedProjects.add(p.minus(~/\/src\/.*$/).replaceAll("/", ":"))
}
else {
matchNames.each {
if (!v && p.endsWith(it)) {
v = true
changedProjects.add(p.minus(it).replaceAll("/", ":"))
}
}
}
if (v && changesVerboseMode) {
println " ${p}"
}
}
else if (p.startsWith("/wars/")) {
if (p.equals("/wars/build.gradle")) {
v = false
}
else if (p.contains("/src/")) {
v = true
changedProjects.add(p.minus(~/\/src\/.*$/).replaceAll("/", ":"))
}
else {
matchNames.each {
if (!v && p.endsWith(it)) {
v = true
changedProjects.add(p.minus(it).replaceAll("/", ":"))
}
}
}
if (v && changesVerboseMode) {
println " ${p}"
}
}
else if (p.startsWith("/ext/")) {
if (p.equals("/ext/build.gradle")) {
v = false
}
else if (p.contains("/src/")) {
v = true
changedProjects.add(p.minus(~/\/src\/.*$/).replaceAll("/", ":"))
}
else {
matchNames.each {
if (!v && p.endsWith(it)) {
v = true
changedProjects.add(p.minus(it).replaceAll("/", ":"))
}
}
}
if (v && changesVerboseMode) {
println " ${p}"
}
}
}
def productVersion = project.properties['product.version'] ?: "1.0.0"
// Get Tag object (to have commit id)
def lastTagName = describeTag.minus(~/-\d+-\w+$/)
def lastReleaseTag = null
grgit.tag.list().each { tag ->
if (tag.name.equals(lastTagName)) {
lastReleaseTag = tag
}
}
if (lastReleaseTag == null) {
lastReleaseTag = grgit.resolve.toTag(lastTagName)
}
println "Curr release..: ${productVersion}"
println "Last ReleaseTag ${lastReleaseTag.getName()} : ${lastReleaseTag.shortMessage} : ${lastReleaseTag.dateTime} : ${lastReleaseTag.commit.id}"
if (changesModeType != null && changesModeType.equals("diff")) {
def diffs = grgit.diff(oldCommit: lastReleaseTag.commit)
diffs.each{f ->
if (changesVerboseMode) {
println "${f.changeType} : ${f.oldPath} : ${f.newPath}"
}
def changeType = f.changeType.toString()
if ("ADD".equals(changeType)) {
collectChangedPath(f.newPath)
}
else if ("MODIFY".equals(changeType)) {
collectChangedPath(f.oldPath)
}
else if ("DELETE".equals(changeType)) {
collectChangedPath(f.oldPath)
}
else if ("COPY".equals(changeType)) {
collectChangedPath(f.newPath)
}
else if ("RENAME".equals(changeType)) {
collectChangedPath(f.oldPath)
collectChangedPath(f.newPath)
}
else {
collectChangedPath(f.oldPath)
collectChangedPath(f.newPath)
}
}
}
else {
// Collect local uncommitted changes
def status = grgit.status();
status.staged.allChanges.each { path ->
collectChangedPath(path);
}
status.unstaged.allChanges.each { path ->
collectChangedPath(path);
}
// Collect changes on commits ahead the tag
def commits = grgit.log {
range(lastReleaseTag.commit, head)
}
commits.each{c ->
if (changesVerboseMode) {
println "${c.id} : ${c.abbreviatedId} : ${c.shortMessage}"
}
grgit.show(commit: c).each{ rev ->
rev.getAllChanges().each { path ->
collectChangedPath(path);
}
}
}
}
}
}
ext.changedProjects = changedProjects.sort()
println "** changesMode = ${changesMode}"
if (ext.changesMode) {
println ""
println "Modules with changes:"
ext.changedProjects.each { println " ${it}" }
println ""
}