Mercurial > public > develkit
annotate init20.gradle @ 233:400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
author | smith@nwoca.org |
---|---|
date | Wed, 19 Oct 2016 22:42:08 +0100 |
parents | 47535c8358ce |
children | 05a1bbd319bc |
rev | line source |
---|---|
175 | 1 import groovy.sql.Sql |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
2 import groovy.transform.Sortable |
178 | 3 import groovy.transform.ToString |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
4 import groovy.transform.TupleConstructor |
175 | 5 |
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
|
6 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
|
7 repositories { |
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
|
8 maven { url 'http://repos.ssdt.nwoca.org/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 maven { url 'http://repos.ssdt.nwoca.org/artifactory/ssdt-repo' } |
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 } |
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
|
11 dependencies { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
12 classpath 'postgresql:postgresql:9.1-901.jdbc4' |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
13 classpath 'com.netflix.nebula:gradle-dependency-lock-plugin:4.3.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
|
14 } |
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
|
15 } |
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
|
16 |
175 | 17 final GradleVersion gradleCurrent = GradleVersion.current() |
18 final GradleVersion gradleV20 = GradleVersion.version('2.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
|
19 final GradleVersion gradleV31 = GradleVersion.version('3.1') |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
20 |
175 | 21 println "Gradle Version: $gradleCurrent" |
203 | 22 |
175 | 23 if (gradleCurrent < gradleV20) { |
24 throw new RuntimeException("this init script requires Gradle version 2.0 or higher") | |
25 } | |
91 | 26 |
101 | 27 gradle.ext.ssdtDevelkitLocation = gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit' |
73 | 28 |
94
1290b23e7b76
modify ivy and gradle to use same local repo
smith@nwoca.org
parents:
92
diff
changeset
|
29 ant.property(file: System.getProperty('user.home') + "/.ssdt/private.properties") |
101 | 30 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
|
31 |
140 | 32 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
|
33 |
73 | 34 gradle.addListener(new ArtifactoryGradleSettings()) |
35 | |
175 | 36 def hostname |
37 try { | |
38 hostname = "hostname".execute().text.toLowerCase().readLines().first() | |
39 } catch (e) { | |
40 hostname = 'unknown' | |
41 } | |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
42 |
175 | 43 gradle.ext.bambooBuild = System.getenv().any { |
44 it.key.toLowerCase().contains('bamboo') | |
193 | 45 } || hostname?.startsWith('ssdt-ba') |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
46 |
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
|
47 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
|
48 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
|
49 |
175 | 50 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
|
51 |
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
|
52 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
|
53 |
175 | 54 try { |
55 gradle.ext.hgRepositoryUrl = ("hg path".execute().text.split('=') ?: ['', ''])[1].trim() | |
56 } catch (e) { | |
57 } | |
159
0c48cfd1938b
allow projects to override branchName
Dave Smith <smith@nwoca.org>
parents:
158
diff
changeset
|
58 |
169 | 59 def springModuleTranslator = [ |
175 | 60 'spring-transaction': 'spring-tx', |
61 'spring-web-servlet': 'spring-webmvc', | |
62 ].withDefault { it } | |
168
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
63 |
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
64 gradle.ext.normalizeSpring = { DependencyResolveDetails details -> |
175 | 65 if (details.requested.group == 'org.springframework' && details.requested.name.startsWith('org.springframework.')) { |
66 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
67 details.useTarget(group: 'org.springframework', name: shortName, version: details.requested.version) | |
68 } | |
69 if (details.requested.group == 'org.springframework.security' && details.requested.name.startsWith('org.springframework.')) { | |
70 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
71 details.useTarget("${details.requested.group}:$shortName:${details.requested.version}") | |
72 } | |
73 } | |
74 | |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
75 gradle.ext.runtimeInfo = new RuntimeInfo() |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
76 |
178 | 77 gradle.ext.branch = new BranchInfo(System.getenv('bamboo_planRepository_branch')) |
78 gradle.ext.branchName = gradle.branch.name | |
79 gradle.ext.branchStream = gradle.branch.stream | |
80 gradle.ext.branchHash = gradle.branch.hash | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
81 println "${gradle.hgRepositoryUrl} ${gradle.branch} ${gradle.branch.version}" |
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
|
82 |
155
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
83 loadEnvironments() |
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
84 |
175 | 85 gradle.environment.put('hgRepositoryUrl', gradle.hgRepositoryUrl) |
178 | 86 gradle.environment.put('branchName', gradle.branch.name) |
87 gradle.environment.put('branchStream', gradle.branch.stream) | |
88 gradle.environment.put('branchHash', gradle.branch.hash) | |
89 | |
205 | 90 |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
91 def cacheTimeout = 60 * 60 * 8 |
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
92 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
|
93 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
|
94 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
|
95 } |
160
6af68acaf9b2
modify to use bamboo env varible to override branchName
Dave Smith <smith@nwoca.org>
parents:
159
diff
changeset
|
96 |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
97 gradle.ext.cacheTimeout = cacheTimeout |
175 | 98 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
99 rootProject.ext.indyCapable = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
100 boolean capable = true |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
101 try { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
102 Class.forName('java.lang.invoke.MethodHandle') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
103 } catch (e) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
104 capable = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
105 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
106 capable && !rootProject.hasProperty('skipIndy') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
107 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
108 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
109 rootProject.ext.useIndy = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
110 boolean indy = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
111 // 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
|
112 indy |= System.hasProperty('indy') && Boolean.valueOf(System.getProperty('indy')) |
79 | 113 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
114 // check ssdt environment for indy property. |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
115 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
|
116 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
117 // check if the main project has an extension property setting indy (-Pindy). |
175 | 118 if (rootProject.hasProperty('indy')) { |
119 indy = (Boolean.valueOf(rootProject.indy)) | |
120 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
121 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
122 // set the groovy runtime system property to ensure forked junit test will get the indy flag properly |
175 | 123 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
|
124 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
125 indy && rootProject.indyCapable() |
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 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
128 println "Indy available: ${rootProject.indyCapable()} enabled: ${rootProject.useIndy()}" |
175 | 129 |
79 | 130 if (gradle.bambooBuild) { |
175 | 131 gradle.ext.ssdtGradlekitLocation = gradle.ext.has('ssdtGradlekitLocation') ? gradle.ssdtGradlekitLocation : 'http://hg.ssdt-ohio.org/ssdt/gradlekit/raw-file/tip' |
132 logger.info "applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)" | |
181 | 133 apply from: "${gradle.ssdtGradlekitLocation}/artifactory20.gradle" |
79 | 134 } |
76 | 135 |
175 | 136 apply from: "${gradle.ssdtDevelkitLocation}/metrics.gradle" |
85 | 137 |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
138 rootProject.afterEvaluate { r -> |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
139 |
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
|
140 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
|
141 gradle.runtimeInfo.requireJava( r.getProperty('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
|
142 } |
206
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
143 |
175 | 144 if (r.plugins.hasPlugin(org.gradle.plugins.ide.idea.IdeaPlugin)) { |
145 | |
146 r.idea.project.ipr.withXml { xml -> | |
147 if (file('.hg').exists()) { | |
148 println 'enabling HG on project' | |
149 def vcs = findComponent(xml.asNode(), 'VcsDirectoryMappings') | |
150 vcs.mapping.@vcs = 'hg4idea' | |
151 } | |
152 | |
153 def codeStyle = findComponent(xml.asNode(), 'ProjectCodeStyleSettingsManager') | |
154 if (codeStyle) { | |
155 xml.asNode().remove(codeStyle) | |
156 } | |
157 | |
158 def styleManager = xml.asNode().appendNode('component', [name: 'ProjectCodeStyleSettingsManager']) | |
159 styleManager.appendNode 'option', [name: 'USE_PER_PROJECT_SETTINGS', value: true] | |
160 | |
161 def styleOptions = new NodeBuilder().option(name: 'PER_PROJECT_SETTINGS') { | |
162 value { | |
163 GroovyCodeStyleSettings { | |
164 option(name: 'CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND', value: '10') | |
165 option(name: 'PACKAGES_TO_USE_IMPORT_ON_DEMAND') { | |
166 value { | |
167 'package'(name: "java.awt", withSubpackages: false, static: false) | |
168 'package'(name: "javax.swing", withSubpackages: false, static: false) | |
169 'package'(name: "javax.persistence", withSubpackages: false, static: false) | |
170 'package'(name: "javax.validation", withSubpackages: true, static: false) | |
171 } | |
172 } | |
173 } | |
174 XML { | |
175 option(name: 'XML_LEGACY_SETTINGS_IMPORTED', value: true) | |
176 } | |
177 | |
178 } | |
179 } | |
180 | |
181 styleManager.append styleOptions | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
182 |
175 | 183 if (r.group.contains('org.ssdt')) { |
184 | |
185 def copyRight = findComponent(xml.asNode(), 'CopyrightManager') | |
186 if (copyRight) { | |
187 xml.asNode().remove(copyRight) | |
188 } | |
189 | |
190 copyRight = new NodeBuilder().component(name: 'CopyrightManager', default: 'ODE') { | |
191 | |
192 copyright { | |
193 option(name: 'notice', value: 'Copyright (c) $today.year. Ohio Department of Education. - All Rights Reserved.\nUnauthorized copying of this file, in any medium, is strictly prohibited.\nWritten by State Software Development Team (http://ssdt.oecn.k12.oh.us/)') | |
194 option(name: 'keyword', value: 'Copyright') | |
195 option(name: 'allowReplaceKeyword', value: 'South Front') | |
196 option(name: 'myName', value: 'ODE') | |
197 option(name: 'myLocal', value: true) | |
198 } | |
199 LanguageOptions(name: 'CSS') { | |
200 option(name: 'fileTypeOverride', value: 1) | |
201 } | |
202 LanguageOptions(name: 'JSP') { | |
203 option(name: 'fileTypeOverride', value: 1) | |
204 option(name: 'prefixLines', value: false) | |
205 } | |
206 LanguageOptions(name: 'JSPX') { | |
207 option(name: 'fileTypeOverride', value: 1) | |
208 option(name: 'prefixLines', value: false) | |
209 } | |
210 LanguageOptions(name: 'JavaScript') { | |
211 option(name: 'fileTypeOverride', value: 1) | |
212 } | |
213 LanguageOptions(name: 'Properties') { | |
214 option(name: 'fileTypeOverride', value: 1) | |
215 } | |
216 } | |
217 | |
218 xml.asNode().append copyRight | |
219 | |
220 } | |
221 } | |
222 } | |
223 | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
224 } |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
225 |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
226 def findComponent(project, name) { |
175 | 227 project.component.find { it.@name == name } |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
228 } |
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
229 |
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
|
230 if (gradleCurrent >= gradleV31) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
231 wrapper { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
232 distributionType = org.gradle.api.tasks.wrapper.Wrapper.DistributionType.ALL |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
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
|
234 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
235 |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
236 allprojects { |
85 | 237 |
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 apply plugin: nebula.plugin.dependencylock.DependencyLockPlugin |
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
|
239 |
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
|
240 dependencyLock { |
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
|
241 globalLockFile = gradle.branch.isRelease() ? 'release.lock' : 'global.lock' |
231
ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
smith@nwoca.org
parents:
230
diff
changeset
|
242 includeTransitives = true |
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
|
243 } |
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
|
244 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
|
245 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
|
246 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
|
247 } |
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
|
248 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
|
249 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
|
250 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
|
251 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
|
252 } |
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
|
253 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
|
254 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
|
255 } |
231
ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
smith@nwoca.org
parents:
230
diff
changeset
|
256 if (project.hasProperty("overrideCommon")) { |
ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
smith@nwoca.org
parents:
230
diff
changeset
|
257 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.contains('ssdt.common.')) { |
ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
smith@nwoca.org
parents:
230
diff
changeset
|
258 details.useVersion(project.overrideCommon) |
ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
smith@nwoca.org
parents:
230
diff
changeset
|
259 } |
ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
smith@nwoca.org
parents:
230
diff
changeset
|
260 } |
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
|
261 } |
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
|
262 } |
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
|
263 |
84 | 264 task cleanLocal(description: "removes all artifacts from developer's local repository") << { |
265 | |
175 | 266 def local = project.repositories.find { it.name == 'local' } |
267 if (local) { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
268 logger.info "removing local repo: $it" |
175 | 269 new File(System.properties['user.home'] + "/.ssdt/local-repo").deleteDir() |
123
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
270 def localDir = new File(gradle.ivyUserDir + "/local") |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
271 localDir.deleteDir() |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
272 logger.info "verifying removal of local repo" |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
273 if (localDir.exists()) { |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
274 throw new org.gradle.api.GradleException("Unable to clean ${localDir}. Files may be locked by another process.") |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
275 } |
75 | 276 } |
175 | 277 } |
278 | |
279 cleanLocal.onlyIf { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
280 project.repositories.any { it.name == 'local' } |
175 | 281 } |
282 | |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
283 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
|
284 |
175 | 285 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
|
286 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
|
287 // 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
|
288 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
|
289 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
|
290 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
|
291 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
|
292 ext.propertyFile = "${e.toLowerCase()}.properties" |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
293 ext.buildenv = project.file('build/buildenv.txt') |
181 | 294 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
|
295 outputs.files new File(outputDir,propertyFile), buildenv |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
296 outputs.upToDateWhen { |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
297 gradle.env == project.previousBuildenv |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
298 } |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
299 doLast { |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
300 t.mkdirs() |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
301 buildenv.text = gradle.env |
173
50db7a832af5
add subproject name when generating properties
smith@nwoca.org
parents:
172
diff
changeset
|
302 def ps = gradle."environment${e}".toProperties() |
175 | 303 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
|
304 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
|
305 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
|
306 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
|
307 def l = pf.readLines().sort() |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
308 pf.text = l.join('\n') |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
309 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
310 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
311 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
312 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
313 |
175 | 314 if (gradle.hasProperty('environmentDatabase')) { |
315 tasks.addRule("Pattern: database{Drop|Create}...: drops or creates the environment's database") { String taskName -> | |
316 if (taskName.startsWith('database') && (taskName.contains('Drop') || taskName.contains('Create'))) { | |
317 task(taskName) { | |
318 doLast { | |
319 def dropIt = taskName.contains("Drop") | |
320 def createIt = taskName.contains("Create") | |
321 def driverName = gradle.environmentDatabase.jdbc.driverClassName | |
322 def databaseUrl = gradle.environmentDatabase.jdbc.url | |
323 if (driverName != "org.postgresql.Driver") { | |
324 logger.info "skipping database operation for non-postgresql driver" | |
325 throw new StopActionException("driver $driverName not supported by $taskName") | |
326 } | |
327 if (!configurations.hasProperty('jdbcdriver')) { | |
328 throw new GradleException("databaseDrop requires a 'jdbcdriver' configuration with a postgresql (or other) driver") | |
329 } | |
330 configurations.jdbcdriver.each { File file -> | |
331 GroovyObject.class.classLoader.addURL(file.toURL()) | |
332 } | |
333 Class.forName(driverName) | |
334 def url = new URI(databaseUrl.substring(5)) | |
335 def jdbcBaseUrl = databaseUrl - url.path | |
336 def databaseName = url.path - "/" | |
337 def adminUrl = jdbcBaseUrl + "/postgres" | |
338 def sql = Sql.newInstance(adminUrl, | |
339 gradle.environmentDatabase.jdbc.username, | |
340 gradle.environmentDatabase.jdbc.password, | |
341 driverName) | |
342 if (dropIt) { | |
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
|
343 logger.info "disconnecting sessions from $databaseName" |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
344 sql.execute "REVOKE CONNECT ON DATABASE \"" + databaseName + "\" FROM public;" |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
345 sql.execute "REVOKE CONNECT ON DATABASE \"" + databaseName + "\" FROM " + gradle.environmentDatabase.jdbc.username + ";" |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
346 sql.execute "SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = '" + databaseName + "';" |
175 | 347 logger.info "dropping $databaseName (if exists) from $adminUrl" |
348 sql.execute 'DROP DATABASE IF EXISTS "' + databaseName + '";' | |
349 } | |
174
e949e86b570e
add databaseDrop|Create tasks for managing environment psql databases
smith@nwoca.org
parents:
173
diff
changeset
|
350 |
175 | 351 if (createIt) { |
352 logger.info "Creating database $databaseName at $adminUrl" | |
353 sql.execute 'CREATE DATABASE "' + databaseName + '";' | |
354 } | |
355 } | |
356 } | |
357 | |
358 } | |
359 } | |
360 } | |
361 | |
230 | 362 } |
363 | |
364 rootProject.afterEvaluate { | |
365 | |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
366 tasks.addRule("release{Major|Minor|Patch|n.n.n}: create release branch") { String taskName -> |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
367 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
368 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
|
369 if (matcher.matches()) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
370 |
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 dependencyLock.globalLockFile = 'release.lock' |
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 task('doReleaseBranch') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
376 ext.requested = matcher[0][1].toLowerCase() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
377 } << { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
378 def releaseVersion = determineReleaseVersion(requested) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
379 def releaseStream = releaseVersion.isHotfix() ? 'hotfix' : 'release' |
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 println "-" * 60 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
382 println "Preparing to create branch\n" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
383 println "\tproject:\t${gradle.rootProject.name}" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
384 println "\tcurrent:\t${gradle.branch} ($gradle.branch.version)" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
385 println() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
386 println "\ttype :\t${releaseStream.toUpperCase()}" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
387 println "\tversion:\t${releaseVersion}" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
388 println "\ttarget :\t${releaseStream}/v${releaseVersion}" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
389 println() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
390 println("-" * 60) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
391 println "DRY RUN".center(60) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
392 println("-" * 60) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
393 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
394 println "hg flow ${releaseStream} start v${releaseVersion} --dirty --dry-run".execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
395 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
396 println "-" * 60 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
397 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
398 if (!confirmPrompt("Continue?")) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
399 throw new BuildCancelledException("release branching canceled by user request") |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
400 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
401 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
402 println "hg flow ${releaseStream} start v${releaseVersion} --dirty".execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
403 println "hg update ${releaseStream}/v${releaseVersion}".execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
404 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
405 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
406 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
407 task('doCommitLock') << { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
408 println 'hg status'.execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
409 println 'hg commit release.lock -A -m "lock dynamic dependencies for release"'.execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
410 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
411 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
412 def branchTasks = ['doReleaseBranch', 'deleteGlobalLock', 'generateGlobalLock', 'saveGlobalLock', 'doCommitLock'] |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
413 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
414 task(taskName) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
415 dependsOn branchTasks |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
416 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
417 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
418 branchTasks.tail().inject(branchTasks.head()) { a, b -> |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
419 tasks[b].mustRunAfter a |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
420 b |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
421 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
422 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
423 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
424 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
425 |
75 | 426 } |
427 | |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
428 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
|
429 String _message = "> $message" + (defaultValue ? " [$defaultValue] " : "") |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
430 if (System.console()) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
431 return System.console().readLine(_message) ?: defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
432 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
433 println "$_message " |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
434 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
435 System.in.newReader().readLine() ?: defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
436 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
437 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
438 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
|
439 String defaultStr = defaultValue ? 'Y' : 'n' |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
440 String consoleVal = readLine("${message} (Y|n)", defaultStr) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
441 if (consoleVal) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
442 return consoleVal.toLowerCase().startsWith('y') |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
443 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
444 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
445 defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
446 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
447 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
448 private Version determineReleaseVersion(String requested) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
449 if (requested == 'major') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
450 return gradle.branch.version.nextMajor() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
451 } else if (requested == 'minor') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
452 return gradle.branch.version.nextMinor() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
453 } else if (requested == 'patch') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
454 return gradle.branch.version.nextPatch() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
455 } else { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
456 return new Version(*requested.split(/\./)*.toInteger(), false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
457 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
458 } |
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
|
459 |
73 | 460 class ArtifactoryGradleSettings extends BuildAdapter implements BuildListener { |
175 | 461 |
73 | 462 def void projectsEvaluated(Gradle gradle) { |
83 | 463 def ssdtArtifactory = 'http://repos.ssdt.nwoca.org/artifactory' |
175 | 464 Project root = gradle.getRootProject() |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
465 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
466 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
467 def branchVersioning = gradle.rootProject.version == 'unspecified' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
468 |
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
|
469 root.allprojects { |
175 | 470 |
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
|
471 def thisProject = delegate |
175 | 472 thisProject.status = 'integration' |
473 if (gradle.branchStream) { | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
474 if (branchVersioning) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
475 thisProject.version = gradle.branch.version |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
476 thisProject.status = gradle.branch.defaultDependencyStatus |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
477 } else { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
478 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
479 thisProject.status = 'integration' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
480 def fixupVersion = thisProject.version - ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
481 if (gradle.branchStream == 'feature') { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
482 fixupVersion = fixupVersion + ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
483 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
484 if (gradle.branchStream == 'develop') { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
485 fixupVersion = fixupVersion + ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
486 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
487 if (gradle.branchStream in ['production', 'release', 'hotfix']) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
488 thisProject.status = 'release' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
489 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
490 thisProject.version = fixupVersion |
175 | 491 } |
492 } | |
493 | |
73 | 494 repositories { |
175 | 495 |
496 if (!gradle.bambooBuild) { | |
497 ivy { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
498 name = 'local' |
175 | 499 artifactPattern gradle.ivyUserDir + '/local/[artifact]-[revision](-[classifier]).[ext]' |
500 ivyPattern gradle.ivyUserDir + "/local/[module]-ivy-[revision].xml" | |
501 } | |
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
|
502 } |
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
|
503 |
175 | 504 if (gradle.branchStream == 'feature') { |
505 ivy { | |
506 name = 'ssdt-branches' | |
177 | 507 url = "${ssdtArtifactory}/ssdt-branches/${gradle.branchHash}/" |
508 layout "pattern", { | |
509 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" | |
510 ivy "[organization]/[module]/ivy-[revision].xml" | |
511 } | |
175 | 512 } |
74 | 513 } |
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
|
514 |
175 | 515 ivy { |
516 name = 'ssdt-snapshots' | |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
517 url = "${ssdtArtifactory}/ssdt-snapshots" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
518 layout "pattern", { |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
519 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
|
520 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
|
521 ivy "[organization]/[module]/ivy-[revision].xml" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
522 m2compatible = true |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
523 } |
175 | 524 } |
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
|
525 |
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
|
526 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
|
527 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
|
528 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
|
529 } |
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
|
530 |
175 | 531 } |
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
|
532 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
533 def remoteRepos = thisProject.repositories.findAll { it.hasProperty('url') && !(it.name == 'local' || it.url.toString().contains('ssdt')) } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
534 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
|
535 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
|
536 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
|
537 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
|
538 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
|
539 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
540 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
541 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
|
542 |
175 | 543 |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
544 if (thisProject.repositories.find { it.name == 'local' } && thisProject.getTasksByName('uploadArchives', false)) { |
87 | 545 uploadArchives { |
175 | 546 repositories { |
547 add thisProject.repositories.local | |
87 | 548 } |
549 } | |
175 | 550 |
126 | 551 thisProject.tasks.create("publishLocal") { |
87 | 552 description = "Publishes this projects artifacts to developer's local repository" |
553 dependsOn = ["uploadArchives"] | |
554 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
555 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
556 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
557 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
558 |
175 | 559 root.subprojects { p -> |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
560 if (root.useIndy()) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
561 def groovyIndy = p.configurations.compile.files.find { f -> f.name.startsWith('groovy-all') && f.name.contains('-indy') } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
562 if (groovyIndy) { |
203 | 563 println "enabling indy compilation on $p" |
175 | 564 [compileGroovy.groovyOptions, compileTestGroovy.groovyOptions]*.with { |
565 optimizationOptions = [indy: true] | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
566 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
567 } |
175 | 568 } |
73 | 569 } |
570 } | |
95
ebb42488396a
modify wrapper to use gradle version when executed
smith@nwoca.org
parents:
94
diff
changeset
|
571 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
572 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
573 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
574 task showEnvironments << { |
175 | 575 println "Defined environments: $gradle.environments" |
576 gradle.environments.each { e -> | |
577 println "\n $e:" | |
578 gradle.getProperty(e).flatten().sort { it.key }.each { k, v -> | |
579 println String.format(' %25s = %s', k, k.contains('password') ? "********" : v) | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
580 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
581 } |
175 | 582 if (logger.isInfoEnabled()) { |
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
|
583 println "System properties:" |
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
|
584 System.properties.each { println " $it" } |
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
|
585 println "env variables:" |
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
|
586 System.getenv().each { println " $it" } |
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
|
587 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
588 } |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
589 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
590 def loadEnvironments() { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
591 def developerPrivate = new Properties() |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
592 if (file('private.properties').exists()) { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
593 developerPrivate.load(file('private.properties').newReader()) |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
594 } |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
595 def envOverrides = [:] |
175 | 596 |
597 if (!hasProperty('env')) { | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
598 gradle.ext.env = developerPrivate.env ?: 'dev' |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
599 } else { |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
600 def values = getProperty('env').split(',') |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
601 gradle.ext.env = values.first() |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
602 values.tail().each { |
175 | 603 def (k, v) = it.split('=') |
604 envOverrides.put(k, v) | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
605 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
606 } |
175 | 607 |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
608 println "Environment is: $gradle.env ($envOverrides)" |
101 | 609 def slurper = new ConfigSlurper(gradle.env) |
175 | 610 slurper.setBinding(['gradle': gradle]) |
611 | |
612 def environment = slurper.parse( | |
613 '''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
|
614 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
|
615 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
|
616 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
|
617 }''') |
175 | 618 if (developerPrivate['deploy.mode']) { |
619 environment.put('deploy.mode', developerPrivate['deploy.mode']) | |
620 } | |
621 | |
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
|
622 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
|
623 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
|
624 def environments = [] |
162
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
625 gradle.ext.environment = environment |
163
c5f09d617715
process environment files in name order
Dave Smith <smith@nwoca.org>
parents:
162
diff
changeset
|
626 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
|
627 def envName = envFile.name - '.groovy' |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
628 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
|
629 logger.info("loading environment $envFile.name") |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
630 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
631 def envCfg = slurper.parse(envFile.toURL()) |
99 | 632 envCfg.merge(slurper.parse(developerPrivate)) |
175 | 633 envCfg.put('ssdt.projectid', gradle.ssdtProjectId) |
634 envCfg.put('ssdt.environment', gradle.env) | |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
635 if (privateFile.exists()) { |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
636 logger.info("loading private environment $privateFile") |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
637 envCfg.merge(slurper.parse(privateFile.toURL())) |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
638 } |
175 | 639 |
640 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
|
641 it.value.split(',').each { p -> |
175 | 642 def (k, v) = p.split('=') |
643 logger.info("$envName: overriding " + k + "=" + v + " in $it") | |
644 envCfg.put(k, v) | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
645 } |
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
646 } |
175 | 647 |
648 envOverrides.each { k, v -> | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
649 logger.info("$envName: overriding " + k + "=" + v) |
175 | 650 envCfg.put(k, v) |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
651 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
652 environment.merge(envCfg) |
175 | 653 if (envName != 'environment') { |
654 gradle.ext[envName] = envCfg | |
655 environments << envName | |
99 | 656 } |
175 | 657 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
658 environment.merge(slurper.parse(developerPrivate)) |
175 | 659 def deployMode = environment.deploy.mode ?: 'development' |
660 environments.each { gradle.ext[it].put('ssdt.deployment.mode', deployMode) } | |
99 | 661 environments << 'environment' |
101 | 662 gradle.ext.environments = environments |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
663 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
664 } |
166
9947c2c8ff44
switch to hash for layout of feature branches
Dave Smith <smith@nwoca.org>
parents:
165
diff
changeset
|
665 |
178 | 666 |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
667 @ToString(includeNames=true) |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
668 class RuntimeInfo { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
669 // OS memory in megabytes, zero if unknown |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
670 int systemMemory = 0 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
671 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
|
672 String javaVersion = System.getProperty('java.version') |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
673 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
674 RuntimeInfo() { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
675 try { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
676 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
|
677 int value = (it[1] as Long) / 1024 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
678 if (it[0].startsWith('MemTotal')) { systemMemory = value } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
679 if (it[0].startsWith('MemFree')) { systemFreeMemory = value } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
680 } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
681 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
682 } catch (e) { } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
683 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
684 } |
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
|
685 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
686 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
|
687 if (systemFreeMemory > 0 && systemFreeMemory < 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
|
688 throw new GradleException("insufficent free OS memory for this build (available: ${systemFreeMemory}m, required: ${megabytes}m)") |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
689 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
690 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
691 /** |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
692 * 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
|
693 */ |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
694 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
|
695 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
|
696 [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
|
697 } 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
|
698 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
699 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
700 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
701 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
|
702 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
703 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
|
704 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
|
705 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
706 } |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
707 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
708 } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
709 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
710 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
711 @TupleConstructor |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
712 @Sortable |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
713 class Version { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
714 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
715 Integer major = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
716 Integer minor = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
717 Integer patch = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
718 Boolean snapshot = true |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
719 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
720 Version nextMajor() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
721 new Version(major + 1, 0, 0, false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
722 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
723 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
724 Version nextMinor() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
725 if (snapshot) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
726 new Version(major, minor , 0,false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
727 } else { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
728 new Version(major, minor + 1, 0,false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
729 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
730 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
731 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
732 Version nextPatch() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
733 new Version(major, minor, patch + 1,false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
734 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
735 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
736 Version nextSnapshot() { |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
737 new Version(major, minor + 1, 0) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
738 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
739 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
740 boolean isHotfix() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
741 !snapshot && patch > 0 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
742 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
743 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
744 String toString() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
745 "${major}.${minor}.${patch}${snapshot ? '.SNAPSHOT' : ''}" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
746 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
747 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
748 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
749 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
750 |
210 | 751 @ToString(includes=['name','shortName','buildVersion','imageId','deployName'],includeNames= true) |
183 | 752 class BranchInfo { |
178 | 753 def name |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
754 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
|
755 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
|
756 def changeset = "" |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
757 def version |
178 | 758 |
759 BranchInfo(name) { | |
760 this.name = name | |
761 if (!name) { | |
184 | 762 this.name = determineName() ?: '' |
178 | 763 } |
764 this.name = this.name.replace('@', '-') | |
765 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
|
766 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
|
767 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
|
768 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
769 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
770 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
|
771 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
|
772 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
773 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
774 private boolean isRelease() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
775 return stream in ['release', 'hotfix'] |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
776 } |
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 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
|
779 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
|
780 } |
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 |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
782 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
|
783 def v = isRelease() ? shortName - "v": "" |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
784 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
|
785 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
786 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
787 def Version getVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
788 if (!version) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
789 if (isRelease()) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
790 version = new Version(*getBuildVersion().split('\\.')*.toInteger(), false) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
791 } else { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
792 version = findSnapshotVersion() |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
793 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
794 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
795 return version |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
796 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
797 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
798 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
|
799 (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
|
800 } |
178 | 801 |
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
|
802 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
|
803 (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
|
804 ('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
|
805 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
806 } |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
807 |
178 | 808 def getHash() { |
809 generateMD5(name) | |
810 } | |
811 def generateMD5(String s) { | |
812 def digest = java.security.MessageDigest.getInstance("MD5") | |
813 digest.update(s.bytes); | |
814 new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0') | |
815 } | |
816 | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
817 private findSnapshotVersion() { |
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
|
818 def repositoryUrl = System.getenv('bamboo_planRepository_repositoryUrl') |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
819 if (repositoryUrl) { |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
820 println "hg pull $repositoryUrl".execute().text |
400f9d8bbf5b
DEP-13: enable sonar analysis for gradle 3.1 projects. disable sonar for ant based projects
smith@nwoca.org
parents:
232
diff
changeset
|
821 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
822 def versions = "hg branches --closed".execute().text.split('\n').findAll { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
823 it.startsWith( 'release') || it.startsWith( 'hotfix') |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
824 }.collect { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
825 it.replaceAll('\\s+',' ').split(' ')[0].split('/')[1] - 'v' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
826 }.collect { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
827 new Version(*it.split('\\.')*.toInteger()) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
828 }.sort { v1, v2 -> v2 <=> v1 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
829 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
830 return versions ? versions.first().nextSnapshot() : new Version().nextSnapshot() |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
831 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
832 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
833 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
834 |
178 | 835 def determineName() { |
183 | 836 try { |
837 def branch = "hg branch".execute().text.trim() | |
838 def rawParents = 'hg parents'.execute().text | |
839 def parent = rawParents.split('\n').find { it.startsWith("branch") }?.split(":")?.getAt(1)?.trim() | |
840 return parent ?: branch | |
841 } catch (e) { | |
184 | 842 ['.hg/branch', '../.hg/branch'].findResult { |
843 new File(it).exists() ? new File(it).text : null | |
183 | 844 } |
845 } | |
178 | 846 } |
847 | |
848 void determineStream() { | |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
849 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
|
850 if (flowConfig.exists()) { |
178 | 851 def flows = new Properties() |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
852 flows.load(flowConfig.newReader()) |
178 | 853 flows.stringPropertyNames().each { |
854 if (!it.startsWith("[") && name.startsWith(flows.getProperty(it))) { | |
855 stream = it | |
856 } | |
857 } | |
858 } | |
859 } | |
860 | |
861 } | |
862 |