Mercurial > public > develkit
annotate init40.gradle @ 292:2307b12a55e6
merge
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Mon, 22 Aug 2022 14:34:04 -0400 |
parents | 7dc9624e59f7 714992639dde |
children | d3b52c8d403c |
rev | line source |
---|---|
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
1 import groovy.transform.Sortable |
178 | 2 import groovy.transform.ToString |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
3 import groovy.transform.TupleConstructor |
175 | 4 |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
5 buildscript { |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
6 repositories { |
278
2f6d25a71778
DEP-19: update maven repo urls
Marc Davis <davis@ssdt-ohio.org>
parents:
274
diff
changeset
|
7 maven { url 'https://docker.ssdt.io/artifactory/ssdt-repo' } |
2f6d25a71778
DEP-19: update maven repo urls
Marc Davis <davis@ssdt-ohio.org>
parents:
274
diff
changeset
|
8 maven { url 'https://docker.ssdt.io/artifactory/gradle-plugins' } |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
9 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
10 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
11 |
269
bf415185af13
add default copyright notice config for intellij
smith@nwoca.org
parents:
267
diff
changeset
|
12 // buildScan { termsOfServiceUrl = 'https://gradle.com/terms-of-service'; termsOfServiceAgree = 'yes' } |
bf415185af13
add default copyright notice config for intellij
smith@nwoca.org
parents:
267
diff
changeset
|
13 |
175 | 14 final GradleVersion gradleCurrent = GradleVersion.current() |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
15 final GradleVersion gradleV410 = GradleVersion.version('4.10') |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
16 |
175 | 17 println "Gradle Version: $gradleCurrent" |
203 | 18 |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
19 if (gradleCurrent < gradleV410) { |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
20 throw new RuntimeException("this init script requires Gradle version 4.10 or higher") |
175 | 21 } |
91 | 22 |
101 | 23 gradle.ext.ssdtDevelkitLocation = gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit' |
73 | 24 |
94
1290b23e7b76
modify ivy and gradle to use same local repo
smith@nwoca.org
parents:
92
diff
changeset
|
25 ant.property(file: System.getProperty('user.home') + "/.ssdt/private.properties") |
101 | 26 gradle.ext.ivyUserDir = ant.properties['ivy.default.ivy.user.dir'] ?: System.getProperty('user.home') + "/.ivy2" |
94
1290b23e7b76
modify ivy and gradle to use same local repo
smith@nwoca.org
parents:
92
diff
changeset
|
27 |
140 | 28 gradle.ext.ssdtProjectId = System.getenv('bamboo_project_id') ?: rootProject.name |
137
cc3cd7da35a7
add projectId to environment based on bamboo id
smith@nwoca.org
parents:
136
diff
changeset
|
29 |
73 | 30 gradle.addListener(new ArtifactoryGradleSettings()) |
31 | |
175 | 32 def hostname |
33 try { | |
34 hostname = "hostname".execute().text.toLowerCase().readLines().first() | |
35 } catch (e) { | |
36 hostname = 'unknown' | |
37 } | |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
38 |
175 | 39 gradle.ext.bambooBuild = System.getenv().any { |
40 it.key.toLowerCase().contains('bamboo') | |
193 | 41 } || hostname?.startsWith('ssdt-ba') |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
42 |
273
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
43 if (!rootProject.hasProperty("bambooLocalBuild")) { |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
44 gradle.ext.bambooLocalBuild = false |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
45 } else { |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
46 gradle.ext.bambooLocalBuild = rootProject.bambooLocalBuild.toBoolean() |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
47 } |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
48 |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
49 if (gradle.bambooLocalBuild) { |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
50 println "Bamboo local build active" |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
51 } |
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
52 |
129
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
53 gradle.ext.bambooPlan = (System.getenv('BAMBOO_PLAN') ?: 'UNKNOWN-UNKNOWN-JOB1').split('-')[0..1].join('-') |
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
54 logger.info "Bamboo plan: ${gradle.bambooPlan}" |
128
c93df17513f1
CM-133: add jacoco for standard coverage reports. Add sonar properties for SCM and bamboo plan
smith@nwoca.org
parents:
126
diff
changeset
|
55 |
175 | 56 gradle.ext.buildTimestamp = System.currentTimeMillis().toString().padLeft(14, '0') |
141
d3c09b4e3332
modify for hgflow. for feature branches, use timestamp for snapshots and resolve branch from ssdt-branches
Dave Smith <smith@nwoca.org>
parents:
140
diff
changeset
|
57 |
128
c93df17513f1
CM-133: add jacoco for standard coverage reports. Add sonar properties for SCM and bamboo plan
smith@nwoca.org
parents:
126
diff
changeset
|
58 gradle.ext.hgRepositoryUrl = "" |
223
6cbe6a8597db
USASR-2244: Attempt to simplify changes to init script by placing hg pull in findSnapshotVersion method
Christopher Springer <springer@nwoca.org>
parents:
222
diff
changeset
|
59 |
175 | 60 try { |
61 gradle.ext.hgRepositoryUrl = ("hg path".execute().text.split('=') ?: ['', ''])[1].trim() | |
62 } catch (e) { | |
63 } | |
159
0c48cfd1938b
allow projects to override branchName
Dave Smith <smith@nwoca.org>
parents:
158
diff
changeset
|
64 |
169 | 65 def springModuleTranslator = [ |
175 | 66 'spring-transaction': 'spring-tx', |
67 'spring-web-servlet': 'spring-webmvc', | |
68 ].withDefault { it } | |
168
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
69 |
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
70 gradle.ext.normalizeSpring = { DependencyResolveDetails details -> |
175 | 71 if (details.requested.group == 'org.springframework' && details.requested.name.startsWith('org.springframework.')) { |
72 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
73 details.useTarget(group: 'org.springframework', name: shortName, version: details.requested.version) | |
74 } | |
75 if (details.requested.group == 'org.springframework.security' && details.requested.name.startsWith('org.springframework.')) { | |
76 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
77 details.useTarget("${details.requested.group}:$shortName:${details.requested.version}") | |
78 } | |
79 } | |
80 | |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
81 gradle.ext.runtimeInfo = new RuntimeInfo() |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
82 |
254 | 83 |
84 if (System.env.DOCKER_HOST ) { | |
85 if (System.env.DOCKER_HOST.contains('tcp:')) { | |
86 gradle.ext.dockerEngineUrl = "https:${System.env.DOCKER_HOST?.minus('tcp:')}" | |
87 } | |
88 gradle.ext.dockerEngineUrl = System.env.DOCKER_HOST | |
89 } | |
90 | |
247
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
91 setBranchInfo() |
128
c93df17513f1
CM-133: add jacoco for standard coverage reports. Add sonar properties for SCM and bamboo plan
smith@nwoca.org
parents:
126
diff
changeset
|
92 |
155
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
93 loadEnvironments() |
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
94 |
175 | 95 gradle.environment.put('hgRepositoryUrl', gradle.hgRepositoryUrl) |
178 | 96 gradle.environment.put('branchName', gradle.branch.name) |
97 gradle.environment.put('branchStream', gradle.branch.stream) | |
98 gradle.environment.put('branchHash', gradle.branch.hash) | |
99 | |
205 | 100 |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
101 def cacheTimeout = 60 * 60 * 8 |
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
102 if (gradle.environment['dependencyTimeout']) { |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
103 cacheTimeout = gradle.environment['dependencyTimeout'] as Integer |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
104 println "setting changing dependency timeout to $cacheTimeout seconds" |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
105 } |
160
6af68acaf9b2
modify to use bamboo env varible to override branchName
Dave Smith <smith@nwoca.org>
parents:
159
diff
changeset
|
106 |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
107 gradle.ext.cacheTimeout = cacheTimeout |
175 | 108 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
109 rootProject.ext.indyCapable = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
110 boolean capable = true |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
111 try { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
112 Class.forName('java.lang.invoke.MethodHandle') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
113 } catch (e) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
114 capable = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
115 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
116 capable && !rootProject.hasProperty('skipIndy') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
117 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
118 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
119 rootProject.ext.useIndy = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
120 boolean indy = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
121 // first, check if a system property activates indy support |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
122 indy |= System.hasProperty('indy') && Boolean.valueOf(System.getProperty('indy')) |
79 | 123 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
124 // check ssdt environment for indy property. |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
125 indy |= (gradle.environment.indy) ? gradle.environment.indy.toBoolean() : false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
126 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
127 // check if the main project has an extension property setting indy (-Pindy). |
175 | 128 if (rootProject.hasProperty('indy')) { |
129 indy = (Boolean.valueOf(rootProject.indy)) | |
130 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
131 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
132 // set the groovy runtime system property to ensure forked junit test will get the indy flag properly |
175 | 133 if (indy && rootProject.indyCapable()) System.setProperty("groovy.target.indy", "true") |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
134 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
135 indy && rootProject.indyCapable() |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
136 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
137 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
138 println "Indy available: ${rootProject.indyCapable()} enabled: ${rootProject.useIndy()}" |
175 | 139 |
79 | 140 if (gradle.bambooBuild) { |
247
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
141 file('build-number.txt').text = "build.number=${gradle.branch.buildNumber ?: -1 }\n" |
79 | 142 } |
291
7dc9624e59f7
Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
Marc Davis <marc.davis@mcoecn.org>
parents:
284
diff
changeset
|
143 gradle.ext.ssdtGradlekitLocation = gradle.ext.has('ssdtGradlekitLocation') ? gradle.ssdtGradlekitLocation : 'http://hg.ssdt-ohio.org/ssdt/gradlekit/raw-file/tip' |
7dc9624e59f7
Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
Marc Davis <marc.davis@mcoecn.org>
parents:
284
diff
changeset
|
144 logger.info "applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)" |
7dc9624e59f7
Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
Marc Davis <marc.davis@mcoecn.org>
parents:
284
diff
changeset
|
145 println "applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)" |
7dc9624e59f7
Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
Marc Davis <marc.davis@mcoecn.org>
parents:
284
diff
changeset
|
146 apply from: "${gradle.ssdtGradlekitLocation}/artifactory40.gradle" |
292 | 147 println "Finished applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)" |
76 | 148 |
246
9884456bea33
allow legacy projects to disable metrics entirely
smith@nwoca.org
parents:
245
diff
changeset
|
149 if (!rootProject.hasProperty('disableMetrics')) { |
284 | 150 println "applying SSDT metrics40.gradle" |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
151 apply from: "${gradle.ssdtDevelkitLocation}/metrics40.gradle" |
246
9884456bea33
allow legacy projects to disable metrics entirely
smith@nwoca.org
parents:
245
diff
changeset
|
152 } |
85 | 153 |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
154 rootProject.afterEvaluate { r -> |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
155 if (gradle.bambooBuild && r.hasProperty('requireJavaVersion')) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
156 gradle.runtimeInfo.requireJava( r.getProperty('requireJavaVersion') ) |
240 | 157 } |
271 | 158 if (!gradle.bambooBuild && !r.file('.idea/copyright/ODE.xml').exists() ) { |
159 updateCopyrightProfile(r) | |
160 } | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
161 } |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
162 |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
163 def findComponent(project, name) { |
175 | 164 project.component.find { it.@name == name } |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
165 } |
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
166 |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
167 wrapper { |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
168 distributionType = org.gradle.api.tasks.wrapper.Wrapper.DistributionType.ALL |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
169 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
170 |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
171 allprojects { |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
172 |
232
47535c8358ce
DEP-13: adjust init script to handle both 2.+ and 3.1. Disable sonar for 3.1+
smith@nwoca.org
parents:
231
diff
changeset
|
173 configurations.all { |
47535c8358ce
DEP-13: adjust init script to handle both 2.+ and 3.1. Disable sonar for 3.1+
smith@nwoca.org
parents:
231
diff
changeset
|
174 resolutionStrategy.cacheChangingModulesFor gradle.cacheTimeout, 'seconds' |
47535c8358ce
DEP-13: adjust init script to handle both 2.+ and 3.1. Disable sonar for 3.1+
smith@nwoca.org
parents:
231
diff
changeset
|
175 resolutionStrategy.cacheDynamicVersionsFor gradle.cacheTimeout, 'seconds' |
47535c8358ce
DEP-13: adjust init script to handle both 2.+ and 3.1. Disable sonar for 3.1+
smith@nwoca.org
parents:
231
diff
changeset
|
176 } |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
177 configurations.all { |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
178 resolutionStrategy.eachDependency { DependencyResolveDetails details -> |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
179 if (details.requested.group == 'org.ssdt_ohio' && !details.requested.version ) { |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
180 details.useVersion( "latest.${gradle.branch.defaultDependencyStatus}" ) |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
181 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
182 if (details.requested.version == 'default') { |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
183 details.useVersion("latest.${gradle.branch.defaultDependencyStatus}" ) |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
184 } |
231
ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
smith@nwoca.org
parents:
230
diff
changeset
|
185 if (project.hasProperty("overrideCommon")) { |
259
020de521e394
Add overrideVui capability
Greg Shepherd <shepherd@nwoca.org>
parents:
258
diff
changeset
|
186 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.contains('ssdt.common.')) { |
020de521e394
Add overrideVui capability
Greg Shepherd <shepherd@nwoca.org>
parents:
258
diff
changeset
|
187 details.useVersion(project.overrideCommon) |
020de521e394
Add overrideVui capability
Greg Shepherd <shepherd@nwoca.org>
parents:
258
diff
changeset
|
188 } |
020de521e394
Add overrideVui capability
Greg Shepherd <shepherd@nwoca.org>
parents:
258
diff
changeset
|
189 } |
020de521e394
Add overrideVui capability
Greg Shepherd <shepherd@nwoca.org>
parents:
258
diff
changeset
|
190 if (project.hasProperty("overrideVui")) { |
020de521e394
Add overrideVui capability
Greg Shepherd <shepherd@nwoca.org>
parents:
258
diff
changeset
|
191 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.startsWith('vui.')) { |
020de521e394
Add overrideVui capability
Greg Shepherd <shepherd@nwoca.org>
parents:
258
diff
changeset
|
192 details.useVersion(project.overrideVui) |
020de521e394
Add overrideVui capability
Greg Shepherd <shepherd@nwoca.org>
parents:
258
diff
changeset
|
193 } |
231
ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
smith@nwoca.org
parents:
230
diff
changeset
|
194 } |
258
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
195 if (project.hasProperty("overrideUsasCore")) { |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
196 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.startsWith('usas.') && !details.requested.name.startsWith('usas.vui')) { |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
197 details.useVersion(project.overrideUsasCore) |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
198 } |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
199 } |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
200 if (project.hasProperty("overrideUspsCore")) { |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
201 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.startsWith('usps.') && !details.requested.name.startsWith('usps.vui')) { |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
202 details.useVersion(project.overrideUspsCore) |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
203 } |
98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
smith@nwoca.org
parents:
257
diff
changeset
|
204 } |
266 | 205 |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
206 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
207 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
208 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
209 task cleanLocal(description: "removes all artifacts from developer's local repository") { |
84 | 210 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
211 doLast { |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
212 def local = project.repositories.find { it.name == 'local' } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
213 if (local) { |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
214 logger.info "removing local repo: $it" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
215 new File(System.properties['user.home'] + "/.ssdt/local-repo").deleteDir() |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
216 def localDir = new File(gradle.ivyUserDir + "/local") |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
217 localDir.deleteDir() |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
218 logger.info "verifying removal of local repo" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
219 if (localDir.exists()) { |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
220 throw new org.gradle.api.GradleException("Unable to clean ${localDir}. Files may be locked by another process.") |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
221 } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
222 } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
223 } |
175 | 224 } |
225 | |
226 cleanLocal.onlyIf { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
227 project.repositories.any { it.name == 'local' } |
175 | 228 } |
229 | |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
230 project.ext.previousBuildenv = project.file('build/buildenv.txt').exists() ? project.file('build/buildenv.txt').text : 'none' |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
231 |
175 | 232 tasks.addRule("Pattern: <environment>As[Test]Properties: Generates <environment>.properties as resource or Test resource") { String taskName -> |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
233 if ((taskName - 'Test').endsWith("AsProperties") && !taskName.startsWith('clean')) { |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
234 // def t = taskName.contains('Test') ? processTestResources.destinationDir : processResources.destinationDir |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
235 def t = taskName.contains('Test') ? sourceSets.test.output.resourcesDir : sourceSets.main.output.resourcesDir |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
236 def e = (taskName - 'Test' - 'AsProperties').capitalize() |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
237 task(taskName) { |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
238 ext.outputDir = t |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
239 ext.propertyFile = "${e.toLowerCase()}.properties" |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
240 ext.buildenv = project.file('build/buildenv.txt') |
181 | 241 inputs.files project.file("../environment${e}.groovy"), project.file("../private${e}.groovy"), project.file('../private.properties') |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
242 outputs.files new File(outputDir,propertyFile), buildenv |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
243 outputs.upToDateWhen { |
245 | 244 gradle.env == project.previousBuildenv && outputs.getFiles().every { it.exists() } |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
245 } |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
246 doLast { |
250
88d5807ea351
USASR-2891: Add back removed creation of directory
Christopher Springer <springer@nwoca.org>
parents:
249
diff
changeset
|
247 t.mkdirs() |
249
35c7933572f8
USASR-2891: Change creation of directories to use outputDir
Christopher Springer <springer@nwoca.org>
parents:
247
diff
changeset
|
248 outputDir.mkdirs() |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
249 buildenv.text = gradle.env |
173
50db7a832af5
add subproject name when generating properties
smith@nwoca.org
parents:
172
diff
changeset
|
250 def ps = gradle."environment${e}".toProperties() |
175 | 251 ps['ssdt.project'] = project.name |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
252 def pf = new File(outputDir,propertyFile) |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
253 ext.outputPropertyFile = pf |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
254 ps.store(pf.newOutputStream(), "by $taskName of $this") |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
255 def l = pf.readLines().sort() |
260
7b699c240ceb
allow slurper files that have 'parent' settings
smith@nwoca.org
parents:
259
diff
changeset
|
256 pf.text = l.join('\n').replaceAll("\\.PARENT","") |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
257 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
258 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
259 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
260 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
261 |
291
7dc9624e59f7
Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
Marc Davis <marc.davis@mcoecn.org>
parents:
284
diff
changeset
|
262 if (!gradle.bambooBuild) { |
7dc9624e59f7
Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
Marc Davis <marc.davis@mcoecn.org>
parents:
284
diff
changeset
|
263 artifactoryPublish.skip = true |
7dc9624e59f7
Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
Marc Davis <marc.davis@mcoecn.org>
parents:
284
diff
changeset
|
264 } |
7dc9624e59f7
Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
Marc Davis <marc.davis@mcoecn.org>
parents:
284
diff
changeset
|
265 |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
266 } |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
267 |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
268 subprojects { |
174
e949e86b570e
add databaseDrop|Create tasks for managing environment psql databases
smith@nwoca.org
parents:
173
diff
changeset
|
269 |
272
1d63556430a6
set environment at project level. remove tests for -indy jars
smith@nwoca.org
parents:
271
diff
changeset
|
270 it.ext.environment = gradle.environment |
1d63556430a6
set environment at project level. remove tests for -indy jars
smith@nwoca.org
parents:
271
diff
changeset
|
271 |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
272 dependencyLocking { |
273
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
273 if (gradle.branch.isRelease()) { |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
274 lockAllConfigurations() |
175 | 275 } |
276 } | |
277 | |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
278 task("releaseLock" ) { |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
279 description = "Create release dependencies Lock files" |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
280 doFirst { |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
281 assert gradle.startParameter.writeDependencyLocks : "must include --write-locks or --update-locks option when locking dependencies" |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
282 } |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
283 doLast { |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
284 |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
285 if (!gradle.branch.isRelease()) { |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
286 throw new BuildCancelledException("releaseLock is only valid on release or hotfix branch.") |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
287 } |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
288 |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
289 configurations.findAll { |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
290 it.canBeResolved |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
291 }.findAll { c -> |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
292 def n = c.name.toLowerCase() |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
293 ['compile','runtime','provided'].any { n.contains(it) } |
265 | 294 }.each { |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
295 it.resolve() |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
296 } |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
297 } |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
298 } |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
299 |
230 | 300 } |
301 | |
302 rootProject.afterEvaluate { | |
269
bf415185af13
add default copyright notice config for intellij
smith@nwoca.org
parents:
267
diff
changeset
|
303 |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
304 tasks.addRule("release{Major|Minor|Patch|n.n.n}: create release branch or update release Lock file") { String taskName -> |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
305 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
306 def matcher = (taskName =~ /^release(Major|Minor|Patch|\d{1,3}\.\d{1,3}\.\d{1,3})$/) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
307 if (matcher.matches()) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
308 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
309 task('doReleaseBranch') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
310 ext.requested = matcher[0][1].toLowerCase() |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
311 doLast { |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
312 def releaseVersion = determineReleaseVersion(requested) |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
313 def releaseStream = releaseVersion.isHotfix() ? 'hotfix' : 'release' |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
314 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
315 println "-" * 60 |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
316 println "Preparing to create branch\n" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
317 println "\tproject:\t${gradle.rootProject.name}" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
318 println "\tcurrent:\t${gradle.branch} ($gradle.branch.version)" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
319 println() |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
320 println "\ttype :\t${releaseStream.toUpperCase()}" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
321 println "\tversion:\t${releaseVersion}" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
322 println "\ttarget :\t${releaseStream}/v${releaseVersion}" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
323 println() |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
324 println("-" * 60) |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
325 println "DRY RUN".center(60) |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
326 println("-" * 60) |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
327 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
328 println "hg flow ${releaseStream} start v${releaseVersion} --dirty --dry-run".execute().text |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
329 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
330 println "-" * 60 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
331 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
332 if (!confirmPrompt("Continue?")) { |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
333 throw new BuildCancelledException("release branching canceled by user request") |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
334 } |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
335 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
336 println "hg flow ${releaseStream} start v${releaseVersion} --dirty".execute().text |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
337 println "hg update ${releaseStream}/v${releaseVersion}".execute().text |
247
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
338 |
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
339 setBranchInfo() |
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
340 |
256
91e05187fd79
split release branch creation and dependency lock into separate steps. Force correct deletion of global lock
smith@nwoca.org
parents:
255
diff
changeset
|
341 println "-" * 60 |
91e05187fd79
split release branch creation and dependency lock into separate steps. Force correct deletion of global lock
smith@nwoca.org
parents:
255
diff
changeset
|
342 println " Be sure to execute 'releaseLock' task to update the release.lock file before proceeding." |
91e05187fd79
split release branch creation and dependency lock into separate steps. Force correct deletion of global lock
smith@nwoca.org
parents:
255
diff
changeset
|
343 println "-" * 60 |
91e05187fd79
split release branch creation and dependency lock into separate steps. Force correct deletion of global lock
smith@nwoca.org
parents:
255
diff
changeset
|
344 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
345 } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
346 } |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
347 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
348 |
256
91e05187fd79
split release branch creation and dependency lock into separate steps. Force correct deletion of global lock
smith@nwoca.org
parents:
255
diff
changeset
|
349 def branchTasks = ['doReleaseBranch'] |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
350 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
351 task(taskName) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
352 dependsOn branchTasks |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
353 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
354 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
355 branchTasks.tail().inject(branchTasks.head()) { a, b -> |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
356 tasks[b].mustRunAfter a |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
357 b |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
358 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
359 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
360 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
361 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
362 |
75 | 363 } |
364 | |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
365 private static String readLine(String message, String defaultValue = null) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
366 String _message = "> $message" + (defaultValue ? " [$defaultValue] " : "") |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
367 if (System.console()) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
368 return System.console().readLine(_message) ?: defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
369 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
370 println "$_message " |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
371 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
372 System.in.newReader().readLine() ?: defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
373 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
374 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
375 private static boolean confirmPrompt(String message, boolean defaultValue = false) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
376 String defaultStr = defaultValue ? 'Y' : 'n' |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
377 String consoleVal = readLine("${message} (Y|n)", defaultStr) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
378 if (consoleVal) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
379 return consoleVal.toLowerCase().startsWith('y') |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
380 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
381 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
382 defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
383 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
384 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
385 private Version determineReleaseVersion(String requested) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
386 if (requested == 'major') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
387 return gradle.branch.version.nextMajor() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
388 } else if (requested == 'minor') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
389 return gradle.branch.version.nextMinor() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
390 } else if (requested == 'patch') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
391 return gradle.branch.version.nextPatch() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
392 } else { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
393 return new Version(*requested.split(/\./)*.toInteger(), false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
394 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
395 } |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
396 |
73 | 397 class ArtifactoryGradleSettings extends BuildAdapter implements BuildListener { |
175 | 398 |
73 | 399 def void projectsEvaluated(Gradle gradle) { |
278
2f6d25a71778
DEP-19: update maven repo urls
Marc Davis <davis@ssdt-ohio.org>
parents:
274
diff
changeset
|
400 def ssdtArtifactory = 'https://docker.ssdt.io/artifactory' |
175 | 401 Project root = gradle.getRootProject() |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
402 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
403 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
404 def branchVersioning = gradle.rootProject.version == 'unspecified' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
405 |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
406 root.allprojects { |
175 | 407 |
141
d3c09b4e3332
modify for hgflow. for feature branches, use timestamp for snapshots and resolve branch from ssdt-branches
Dave Smith <smith@nwoca.org>
parents:
140
diff
changeset
|
408 def thisProject = delegate |
175 | 409 thisProject.status = 'integration' |
410 if (gradle.branchStream) { | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
411 if (branchVersioning) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
412 thisProject.version = gradle.branch.version |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
413 thisProject.status = gradle.branch.defaultDependencyStatus |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
414 } else { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
415 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
416 thisProject.status = 'integration' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
417 def fixupVersion = thisProject.version - ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
418 if (gradle.branchStream == 'feature') { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
419 fixupVersion = fixupVersion + ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
420 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
421 if (gradle.branchStream == 'develop') { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
422 fixupVersion = fixupVersion + ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
423 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
424 if (gradle.branchStream in ['production', 'release', 'hotfix']) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
425 thisProject.status = 'release' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
426 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
427 thisProject.version = fixupVersion |
175 | 428 } |
429 } | |
430 | |
73 | 431 repositories { |
175 | 432 |
273
f5c641647fc6
add support for bamboo builds using a local repo
smith@nwoca.org
parents:
272
diff
changeset
|
433 if (!gradle.bambooBuild || gradle.bambooLocalBuild) { |
175 | 434 ivy { |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
435 name = 'local' |
175 | 436 artifactPattern gradle.ivyUserDir + '/local/[artifact]-[revision](-[classifier]).[ext]' |
437 ivyPattern gradle.ivyUserDir + "/local/[module]-ivy-[revision].xml" | |
438 } | |
274 | 439 } |
440 | |
441 if (!gradle.bambooBuild) { | |
442 mavenLocal() | |
141
d3c09b4e3332
modify for hgflow. for feature branches, use timestamp for snapshots and resolve branch from ssdt-branches
Dave Smith <smith@nwoca.org>
parents:
140
diff
changeset
|
443 } |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
444 |
175 | 445 if (gradle.branchStream == 'feature') { |
446 ivy { | |
447 name = 'ssdt-branches' | |
177 | 448 url = "${ssdtArtifactory}/ssdt-branches/${gradle.branchHash}/" |
449 layout "pattern", { | |
450 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" | |
451 ivy "[organization]/[module]/ivy-[revision].xml" | |
452 } | |
175 | 453 } |
74 | 454 } |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
455 |
267 | 456 ivy { |
457 name = 'ssdt-releases' | |
458 url = "${ssdtArtifactory}/ssdt-releases" | |
459 layout "pattern", { | |
460 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" | |
461 artifact "[organization]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" | |
462 ivy "[organization]/[module]/ivy-[revision].xml" | |
463 m2compatible = true | |
464 } | |
465 } | |
466 | |
175 | 467 ivy { |
468 name = 'ssdt-snapshots' | |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
469 url = "${ssdtArtifactory}/ssdt-snapshots" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
470 layout "pattern", { |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
471 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
472 artifact "[organization]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
473 ivy "[organization]/[module]/ivy-[revision].xml" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
474 m2compatible = true |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
475 } |
175 | 476 } |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
477 |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
478 maven { |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
479 name = 'ssdt-repository' |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
480 url = "${ssdtArtifactory}/repository" |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
481 } |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
482 |
175 | 483 } |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
484 |
261 | 485 def remoteRepos = thisProject.repositories.findAll { it.hasProperty('url') && !(it.name.toLowerCase().contains('local') || it.url.toString().contains('ssdt')) } |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
486 if (remoteRepos) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
487 logger.warn "WARNING: Remote repositories configured for $thisProject:\n" + remoteRepos.collect { "\t$it.name $it.url " }.join('\n') + "\n Moved to lowest priority..." |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
488 remoteRepos.each { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
489 thisProject.repositories.remove(it) |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
490 thisProject.repositories.addLast(it) |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
491 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
492 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
493 logger.info "$thisProject configured repositories:\n" + thisProject.repositories.collect {"\t$it.name ${it.hasProperty('url') ? it.url : '' }" }.join('\n') |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
494 |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
495 if (thisProject.repositories.find { it.name == 'local' } && thisProject.getTasksByName('uploadArchives', false)) { |
87 | 496 uploadArchives { |
175 | 497 repositories { |
498 add thisProject.repositories.local | |
87 | 499 } |
500 } | |
175 | 501 |
126 | 502 thisProject.tasks.create("publishLocal") { |
87 | 503 description = "Publishes this projects artifacts to developer's local repository" |
504 dependsOn = ["uploadArchives"] | |
505 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
506 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
507 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
508 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
509 |
175 | 510 root.subprojects { p -> |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
511 if (root.useIndy()) { |
272
1d63556430a6
set environment at project level. remove tests for -indy jars
smith@nwoca.org
parents:
271
diff
changeset
|
512 println "enabling indy compilation on $p" |
1d63556430a6
set environment at project level. remove tests for -indy jars
smith@nwoca.org
parents:
271
diff
changeset
|
513 [compileGroovy.groovyOptions, compileTestGroovy.groovyOptions]*.with { |
1d63556430a6
set environment at project level. remove tests for -indy jars
smith@nwoca.org
parents:
271
diff
changeset
|
514 optimizationOptions = [indy: true] |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
515 } |
175 | 516 } |
73 | 517 } |
518 } | |
95
ebb42488396a
modify wrapper to use gradle version when executed
smith@nwoca.org
parents:
94
diff
changeset
|
519 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
520 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
521 |
241
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
522 task showEnvironments { |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
523 |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
524 doLast { |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
525 println "Defined environments: $gradle.environments" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
526 gradle.environments.each { e -> |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
527 println "\n $e:" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
528 gradle.getProperty(e).flatten().sort { it.key }.each { k, v -> |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
529 println String.format(' %25s = %s', k, k.contains('password') ? "********" : v) |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
530 } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
531 } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
532 if (logger.isInfoEnabled()) { |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
533 println "System properties:" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
534 System.properties.each { println " $it" } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
535 println "env variables:" |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
536 System.getenv().each { println " $it" } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
537 } |
1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
Christopher Springer <springer@nwoca.org>
parents:
240
diff
changeset
|
538 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
539 } |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
540 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
541 def loadEnvironments() { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
542 def developerPrivate = new Properties() |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
543 if (file('private.properties').exists()) { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
544 developerPrivate.load(file('private.properties').newReader()) |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
545 } |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
546 def envOverrides = [:] |
175 | 547 |
548 if (!hasProperty('env')) { | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
549 gradle.ext.env = developerPrivate.env ?: 'dev' |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
550 } else { |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
551 def values = getProperty('env').split(',') |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
552 gradle.ext.env = values.first() |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
553 values.tail().each { |
175 | 554 def (k, v) = it.split('=') |
555 envOverrides.put(k, v) | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
556 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
557 } |
175 | 558 |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
559 println "Environment is: $gradle.env ($envOverrides)" |
101 | 560 def slurper = new ConfigSlurper(gradle.env) |
175 | 561 slurper.setBinding(['gradle': gradle]) |
562 | |
563 def environment = slurper.parse( | |
564 '''deploy.mode="production" | |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
565 environments { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
566 test { deploy.mode="test" } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
567 dev { deploy.mode="development"} |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
568 }''') |
175 | 569 if (developerPrivate['deploy.mode']) { |
570 environment.put('deploy.mode', developerPrivate['deploy.mode']) | |
571 } | |
572 | |
216
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
573 environment.put('branchInfo',gradle.branch) |
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
574 environment.put('branchVersion',gradle.branch.version.toString()) |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
575 def environments = [] |
162
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
576 gradle.ext.environment = environment |
163
c5f09d617715
process environment files in name order
Dave Smith <smith@nwoca.org>
parents:
162
diff
changeset
|
577 file('.').listFiles().findAll { it.name ==~ /^environment.*\.groovy$/ }.sort { it.name }.each { envFile -> |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
578 def envName = envFile.name - '.groovy' |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
579 def privateFile = file("private" + envName - "environment" + ".groovy") |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
580 logger.info("loading environment $envFile.name") |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
581 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
582 def envCfg = slurper.parse(envFile.toURL()) |
99 | 583 envCfg.merge(slurper.parse(developerPrivate)) |
175 | 584 envCfg.put('ssdt.projectid', gradle.ssdtProjectId) |
585 envCfg.put('ssdt.environment', gradle.env) | |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
586 if (privateFile.exists()) { |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
587 logger.info("loading private environment $privateFile") |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
588 envCfg.merge(slurper.parse(privateFile.toURL())) |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
589 } |
175 | 590 |
591 gradle.rootProject.getProperties().find { it.key.startsWith('environment') }.each { | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
592 it.value.split(',').each { p -> |
175 | 593 def (k, v) = p.split('=') |
594 logger.info("$envName: overriding " + k + "=" + v + " in $it") | |
595 envCfg.put(k, v) | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
596 } |
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
597 } |
175 | 598 |
599 envOverrides.each { k, v -> | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
600 logger.info("$envName: overriding " + k + "=" + v) |
175 | 601 envCfg.put(k, v) |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
602 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
603 environment.merge(envCfg) |
175 | 604 if (envName != 'environment') { |
605 gradle.ext[envName] = envCfg | |
606 environments << envName | |
99 | 607 } |
175 | 608 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
609 environment.merge(slurper.parse(developerPrivate)) |
175 | 610 def deployMode = environment.deploy.mode ?: 'development' |
611 environments.each { gradle.ext[it].put('ssdt.deployment.mode', deployMode) } | |
99 | 612 environments << 'environment' |
101 | 613 gradle.ext.environments = environments |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
614 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
615 } |
166
9947c2c8ff44
switch to hash for layout of feature branches
Dave Smith <smith@nwoca.org>
parents:
165
diff
changeset
|
616 |
271 | 617 def updateCopyrightProfile(Project r) { |
618 r.file('.idea/copyright').mkdirs() | |
619 r.file('.idea/copyright/ODE.xml').text = | |
620 '''<component name="CopyrightManager"> | |
621 <copyright> | |
622 <option name="notice" value="Copyright (c) &#36;today.year. Ohio Department of Education. - All Rights Reserved. Unauthorized copying of this file, in any medium, is strictly prohibited. Written by the State Software Development Team (http://ssdt.oecn.k12.oh.us/) " /> | |
623 <option name="myName" value="ODE" /> | |
624 </copyright> | |
625 </component>''' | |
626 | |
627 r.file('.idea/copyright/profiles_settings.xml').text = | |
628 '''<component name="CopyrightManager"> | |
629 <settings default="ODE" /> | |
630 </component>''' | |
631 | |
632 } | |
178 | 633 |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
634 @ToString(includeNames=true) |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
635 class RuntimeInfo { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
636 // OS memory in megabytes, zero if unknown |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
637 int systemMemory = 0 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
638 int systemFreeMemory = 0 |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
639 String javaVersion = System.getProperty('java.version') |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
640 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
641 RuntimeInfo() { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
642 try { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
643 new File('/proc/meminfo').readLines().findAll { it.startsWith 'Mem' }.collect { it.split(/\s+/) }.each { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
644 int value = (it[1] as Long) / 1024 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
645 if (it[0].startsWith('MemTotal')) { systemMemory = value } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
646 if (it[0].startsWith('MemFree')) { systemFreeMemory = value } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
647 } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
648 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
649 } catch (e) { } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
650 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
651 } |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
652 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
653 void requireMemory(int megabytes) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
654 if (systemFreeMemory > 0 && systemFreeMemory < megabytes) { |
255
37e1c910c8f5
disable requireMemeory failure and replace with a warning
smith@nwoca.org
parents:
254
diff
changeset
|
655 println "WARNING: potentially insufficent OS memory for this build" |
37e1c910c8f5
disable requireMemeory failure and replace with a warning
smith@nwoca.org
parents:
254
diff
changeset
|
656 // throw new GradleException("insufficent free OS memory for this build (available: ${systemFreeMemory}m, required: ${megabytes}m)") |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
657 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
658 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
659 /** |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
660 * Returns maximum memory available upto the value specified. |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
661 */ |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
662 int maxMemory(int megabytes) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
663 if (systemFreeMemory) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
664 [systemFreeMemory,megabytes].min() |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
665 } else { megabytes } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
666 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
667 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
668 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
669 void requireJava(String version) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
670 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
671 if ( version && !javaVersion.startsWith(version)) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
672 throw new GradleException("Requires java version $version but running under $javaVersion") |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
673 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
674 } |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
675 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
676 } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
677 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
678 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
679 @TupleConstructor |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
680 @Sortable |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
681 class Version { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
682 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
683 Integer major = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
684 Integer minor = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
685 Integer patch = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
686 Boolean snapshot = true |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
687 |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
688 Integer previousMinor = 0 |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
689 Integer previousPatch = 0 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
690 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
691 Version nextMajor() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
692 new Version(major + 1, 0, 0, false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
693 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
694 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
695 Version nextMinor() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
696 if (snapshot) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
697 new Version(major, minor , 0,false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
698 } else { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
699 new Version(major, minor + 1, 0,false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
700 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
701 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
702 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
703 Version nextPatch() { |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
704 if (snapshot) { |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
705 new Version(major, previousMinor, previousPatch + 1,false) |
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
706 } |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
707 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
708 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
709 Version nextSnapshot() { |
263
0a6a5a7470c4
add scripts for gradle 4+ to use new gradle dependency locking and cleanup accumulated clutter
smith@nwoca.org
parents:
262
diff
changeset
|
710 new Version(major, minor + 1, 0,true,minor,patch) |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
711 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
712 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
713 boolean isHotfix() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
714 !snapshot && patch > 0 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
715 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
716 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
717 String toString() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
718 "${major}.${minor}.${patch}${snapshot ? '.SNAPSHOT' : ''}" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
719 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
720 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
721 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
722 |
247
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
723 void setBranchInfo() { |
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
724 gradle.ext.branch = new BranchInfo(System.getenv('bamboo_planRepository_branch')) |
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
725 gradle.ext.branchName = gradle.branch.name |
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
726 gradle.ext.branchStream = gradle.branch.stream |
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
727 gradle.ext.branchHash = gradle.branch.hash |
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
728 println "${gradle.hgRepositoryUrl} ${gradle.branch} ${gradle.branch.version}" |
ecae2b9a41d3
add code to stamp build number into build-number.txt lost in bamboo 5
smith@nwoca.org
parents:
246
diff
changeset
|
729 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
730 |
254 | 731 |
210 | 732 @ToString(includes=['name','shortName','buildVersion','imageId','deployName'],includeNames= true) |
183 | 733 class BranchInfo { |
178 | 734 def name |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
735 def stream = "none" |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
736 def buildNumber = "" |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
737 def changeset = "" |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
738 def version |
178 | 739 |
740 BranchInfo(name) { | |
741 this.name = name | |
742 if (!name) { | |
184 | 743 this.name = determineName() ?: '' |
178 | 744 } |
745 this.name = this.name.replace('@', '-') | |
746 determineStream() | |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
747 buildNumber = System.getenv('bamboo_buildNumber') ?: "" |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
748 changeset = System.getenv('bamboo_planRepository_revision') ?: "" |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
749 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
750 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
751 String getDefaultDependencyStatus() { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
752 return isRelease() ? 'release' : 'integration' |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
753 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
754 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
755 private boolean isRelease() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
756 return stream in ['release', 'hotfix'] |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
757 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
758 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
759 def getShortName() { |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
760 def result = name.contains('/') ? name.split('/')[1] : name |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
761 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
762 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
763 String getBuildVersion() { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
764 def v = isRelease() ? shortName - "v": "" |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
765 return v |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
766 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
767 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
768 def Version getVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
769 if (!version) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
770 if (isRelease()) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
771 version = new Version(*getBuildVersion().split('\\.')*.toInteger(), false) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
772 } else { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
773 version = findSnapshotVersion() |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
774 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
775 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
776 return version |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
777 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
778 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
779 def getImageId() { |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
780 (buildVersion ?: shortName.take(25)) + (buildNumber ? "-${buildNumber}" : "-0") |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
781 } |
178 | 782 |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
783 def getDeployName() { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
784 (buildVersion ?: shortName.take(25)).toLowerCase().collectReplacements { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
785 ('a'..'z').contains(it) || ('0'..'9').contains(it) || it == "-" ? null : '-' |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
786 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
787 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
788 |
178 | 789 def getHash() { |
790 generateMD5(name) | |
791 } | |
792 def generateMD5(String s) { | |
793 def digest = java.security.MessageDigest.getInstance("MD5") | |
794 digest.update(s.bytes); | |
795 new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0') | |
796 } | |
797 | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
798 private findSnapshotVersion() { |
257 | 799 |
800 try { | |
801 def repositoryUrl = System.getenv('bamboo_planRepository_repositoryUrl') | |
802 if (repositoryUrl) { | |
803 println "hg pull $repositoryUrl".execute().text | |
804 } | |
805 def versions = "hg branches --closed".execute().text.split('\n').findAll { | |
806 it.startsWith( 'release') || it.startsWith( 'hotfix') | |
807 }.collect { | |
808 it.replaceAll('\\s+',' ').split(' ')[0].split('/')[1] - 'v' | |
809 }.collect { | |
810 new Version(*it.split('\\.')*.toInteger()) | |
811 }.sort { v1, v2 -> v2 <=> v1 } | |
812 | |
813 return versions ? versions.first().nextSnapshot() : new Version().nextSnapshot() | |
814 | |
815 } catch (e) { | |
816 return new Version().nextSnapshot() | |
233
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
817 } |
257 | 818 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
819 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
820 |
178 | 821 def determineName() { |
183 | 822 try { |
823 def branch = "hg branch".execute().text.trim() | |
824 def rawParents = 'hg parents'.execute().text | |
825 def parent = rawParents.split('\n').find { it.startsWith("branch") }?.split(":")?.getAt(1)?.trim() | |
826 return parent ?: branch | |
827 } catch (e) { | |
184 | 828 ['.hg/branch', '../.hg/branch'].findResult { |
829 new File(it).exists() ? new File(it).text : null | |
183 | 830 } |
831 } | |
178 | 832 } |
833 | |
834 void determineStream() { | |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
835 def flowConfig = new File('.hgflow').exists() ? new File('.hgflow') : new File('../.hgflow') |
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
836 if (flowConfig.exists()) { |
178 | 837 def flows = new Properties() |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
838 flows.load(flowConfig.newReader()) |
178 | 839 flows.stringPropertyNames().each { |
840 if (!it.startsWith("[") && name.startsWith(flows.getProperty(it))) { | |
841 stream = it | |
842 } | |
843 } | |
844 } | |
845 } | |
271 | 846 |
178 | 847 } |
848 | |
271 | 849 |
850 |