Mercurial > public > develkit
annotate init20.gradle @ 216:b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
author | smith@nwoca.org |
---|---|
date | Wed, 29 Jun 2016 13:57:17 +0100 |
parents | 5bebb590b30e |
children | efa545c6dd65 |
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 { |
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
|
8 maven { url 'http://repos.ssdt.nwoca.org/artifactory/gradle-plugins' } |
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 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
11 dependencies { |
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
|
12 classpath 'postgresql:postgresql:9.1-901.jdbc4' |
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
|
13 classpath 'com.netflix.nebula:gradle-dependency-lock-plugin:4.3.0' |
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
|
14 } |
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') | |
19 println "Gradle Version: $gradleCurrent" | |
203 | 20 |
175 | 21 if (gradleCurrent < gradleV20) { |
22 throw new RuntimeException("this init script requires Gradle version 2.0 or higher") | |
23 } | |
91 | 24 |
101 | 25 gradle.ext.ssdtDevelkitLocation = gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit' |
73 | 26 |
94
1290b23e7b76
modify ivy and gradle to use same local repo
smith@nwoca.org
parents:
92
diff
changeset
|
27 ant.property(file: System.getProperty('user.home') + "/.ssdt/private.properties") |
101 | 28 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
|
29 |
140 | 30 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
|
31 |
73 | 32 gradle.addListener(new ArtifactoryGradleSettings()) |
33 | |
175 | 34 def hostname |
35 try { | |
36 hostname = "hostname".execute().text.toLowerCase().readLines().first() | |
37 } catch (e) { | |
38 hostname = 'unknown' | |
39 } | |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
40 |
175 | 41 gradle.ext.bambooBuild = System.getenv().any { |
42 it.key.toLowerCase().contains('bamboo') | |
193 | 43 } || hostname?.startsWith('ssdt-ba') |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
44 |
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
|
45 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
|
46 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
|
47 |
175 | 48 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
|
49 |
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
|
50 gradle.ext.hgRepositoryUrl = "" |
175 | 51 try { |
52 gradle.ext.hgRepositoryUrl = ("hg path".execute().text.split('=') ?: ['', ''])[1].trim() | |
53 } catch (e) { | |
54 } | |
159
0c48cfd1938b
allow projects to override branchName
Dave Smith <smith@nwoca.org>
parents:
158
diff
changeset
|
55 |
169 | 56 def springModuleTranslator = [ |
175 | 57 'spring-transaction': 'spring-tx', |
58 'spring-web-servlet': 'spring-webmvc', | |
59 ].withDefault { it } | |
168
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
60 |
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
61 gradle.ext.normalizeSpring = { DependencyResolveDetails details -> |
175 | 62 if (details.requested.group == 'org.springframework' && details.requested.name.startsWith('org.springframework.')) { |
63 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
64 details.useTarget(group: 'org.springframework', name: shortName, version: details.requested.version) | |
65 } | |
66 if (details.requested.group == 'org.springframework.security' && details.requested.name.startsWith('org.springframework.')) { | |
67 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
68 details.useTarget("${details.requested.group}:$shortName:${details.requested.version}") | |
69 } | |
70 } | |
71 | |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
72 gradle.ext.runtimeInfo = new RuntimeInfo() |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
73 |
178 | 74 gradle.ext.branch = new BranchInfo(System.getenv('bamboo_planRepository_branch')) |
75 gradle.ext.branchName = gradle.branch.name | |
76 gradle.ext.branchStream = gradle.branch.stream | |
77 gradle.ext.branchHash = gradle.branch.hash | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
78 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
|
79 |
155
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
80 loadEnvironments() |
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
81 |
175 | 82 gradle.environment.put('hgRepositoryUrl', gradle.hgRepositoryUrl) |
178 | 83 gradle.environment.put('branchName', gradle.branch.name) |
84 gradle.environment.put('branchStream', gradle.branch.stream) | |
85 gradle.environment.put('branchHash', gradle.branch.hash) | |
86 | |
205 | 87 |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
88 def cacheTimeout = 60 * 60 * 8 |
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
89 if (gradle.environment['dependencyTimeout']) { |
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
90 cacheTimeout = gradle.environment['dependencyTimeout'] as Integer |
197 | 91 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
|
92 } |
160
6af68acaf9b2
modify to use bamboo env varible to override branchName
Dave Smith <smith@nwoca.org>
parents:
159
diff
changeset
|
93 |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
94 gradle.ext.cacheTimeout = cacheTimeout |
175 | 95 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
96 rootProject.ext.indyCapable = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
97 boolean capable = true |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
98 try { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
99 Class.forName('java.lang.invoke.MethodHandle') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
100 } catch (e) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
101 capable = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
102 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
103 capable && !rootProject.hasProperty('skipIndy') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
104 } |
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 rootProject.ext.useIndy = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
107 boolean indy = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
108 // 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
|
109 indy |= System.hasProperty('indy') && Boolean.valueOf(System.getProperty('indy')) |
79 | 110 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
111 // check ssdt environment for indy property. |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
112 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
|
113 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
114 // check if the main project has an extension property setting indy (-Pindy). |
175 | 115 if (rootProject.hasProperty('indy')) { |
116 indy = (Boolean.valueOf(rootProject.indy)) | |
117 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
118 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
119 // set the groovy runtime system property to ensure forked junit test will get the indy flag properly |
175 | 120 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
|
121 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
122 indy && rootProject.indyCapable() |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
123 } |
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 println "Indy available: ${rootProject.indyCapable()} enabled: ${rootProject.useIndy()}" |
175 | 126 |
79 | 127 if (gradle.bambooBuild) { |
175 | 128 gradle.ext.ssdtGradlekitLocation = gradle.ext.has('ssdtGradlekitLocation') ? gradle.ssdtGradlekitLocation : 'http://hg.ssdt-ohio.org/ssdt/gradlekit/raw-file/tip' |
129 logger.info "applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)" | |
181 | 130 apply from: "${gradle.ssdtGradlekitLocation}/artifactory20.gradle" |
79 | 131 } |
76 | 132 |
175 | 133 apply from: "${gradle.ssdtDevelkitLocation}/metrics.gradle" |
85 | 134 |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
135 rootProject.afterEvaluate { r -> |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
136 |
206
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
137 if (gradle.bambooBuild && r.hasProperty('requireJavaVersion')) { |
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
138 gradle.runtimeInfo.requireJava( r.getProperty('requireJavaVersion') ) |
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
139 } |
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
140 |
175 | 141 if (r.plugins.hasPlugin(org.gradle.plugins.ide.idea.IdeaPlugin)) { |
142 | |
143 r.idea.project.ipr.withXml { xml -> | |
144 if (file('.hg').exists()) { | |
145 println 'enabling HG on project' | |
146 def vcs = findComponent(xml.asNode(), 'VcsDirectoryMappings') | |
147 vcs.mapping.@vcs = 'hg4idea' | |
148 } | |
149 | |
150 def codeStyle = findComponent(xml.asNode(), 'ProjectCodeStyleSettingsManager') | |
151 if (codeStyle) { | |
152 xml.asNode().remove(codeStyle) | |
153 } | |
154 | |
155 def styleManager = xml.asNode().appendNode('component', [name: 'ProjectCodeStyleSettingsManager']) | |
156 styleManager.appendNode 'option', [name: 'USE_PER_PROJECT_SETTINGS', value: true] | |
157 | |
158 def styleOptions = new NodeBuilder().option(name: 'PER_PROJECT_SETTINGS') { | |
159 value { | |
160 GroovyCodeStyleSettings { | |
161 option(name: 'CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND', value: '10') | |
162 option(name: 'PACKAGES_TO_USE_IMPORT_ON_DEMAND') { | |
163 value { | |
164 'package'(name: "java.awt", withSubpackages: false, static: false) | |
165 'package'(name: "javax.swing", withSubpackages: false, static: false) | |
166 'package'(name: "javax.persistence", withSubpackages: false, static: false) | |
167 'package'(name: "javax.validation", withSubpackages: true, static: false) | |
168 } | |
169 } | |
170 } | |
171 XML { | |
172 option(name: 'XML_LEGACY_SETTINGS_IMPORTED', value: true) | |
173 } | |
174 | |
175 } | |
176 } | |
177 | |
178 styleManager.append styleOptions | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
179 |
175 | 180 if (r.group.contains('org.ssdt')) { |
181 | |
182 def copyRight = findComponent(xml.asNode(), 'CopyrightManager') | |
183 if (copyRight) { | |
184 xml.asNode().remove(copyRight) | |
185 } | |
186 | |
187 copyRight = new NodeBuilder().component(name: 'CopyrightManager', default: 'ODE') { | |
188 | |
189 copyright { | |
190 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/)') | |
191 option(name: 'keyword', value: 'Copyright') | |
192 option(name: 'allowReplaceKeyword', value: 'South Front') | |
193 option(name: 'myName', value: 'ODE') | |
194 option(name: 'myLocal', value: true) | |
195 } | |
196 LanguageOptions(name: 'CSS') { | |
197 option(name: 'fileTypeOverride', value: 1) | |
198 } | |
199 LanguageOptions(name: 'JSP') { | |
200 option(name: 'fileTypeOverride', value: 1) | |
201 option(name: 'prefixLines', value: false) | |
202 } | |
203 LanguageOptions(name: 'JSPX') { | |
204 option(name: 'fileTypeOverride', value: 1) | |
205 option(name: 'prefixLines', value: false) | |
206 } | |
207 LanguageOptions(name: 'JavaScript') { | |
208 option(name: 'fileTypeOverride', value: 1) | |
209 } | |
210 LanguageOptions(name: 'Properties') { | |
211 option(name: 'fileTypeOverride', value: 1) | |
212 } | |
213 } | |
214 | |
215 xml.asNode().append copyRight | |
216 | |
217 } | |
218 } | |
219 } | |
220 | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
221 } |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
222 |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
223 def findComponent(project, name) { |
175 | 224 project.component.find { it.@name == name } |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
225 } |
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
226 |
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
227 allprojects { |
85 | 228 |
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
|
229 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
|
230 |
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
|
231 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
|
232 globalLockFile = gradle.branch.isRelease() ? 'release.lock' : 'global.lock' |
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
|
233 } |
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
|
234 |
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
|
235 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
|
236 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
|
237 if (details.requested.group == 'org.ssdt_ohio' && !details.requested.version ) { |
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
|
238 details.useVersion( "latest.${gradle.branch.defaultDependencyStatus}" ) |
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
|
239 } |
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
|
240 if (details.requested.version == 'default') { |
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
|
241 details.useVersion("latest.${gradle.branch.defaultDependencyStatus}" ) |
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
|
242 } |
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
|
243 } |
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
|
244 } |
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
|
245 |
84 | 246 task cleanLocal(description: "removes all artifacts from developer's local repository") << { |
247 | |
175 | 248 def local = project.repositories.find { it.name == 'local' } |
249 if (local) { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
250 logger.info "removing local repo: $it" |
175 | 251 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
|
252 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
|
253 localDir.deleteDir() |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
254 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
|
255 if (localDir.exists()) { |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
256 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
|
257 } |
75 | 258 } |
175 | 259 } |
260 | |
261 cleanLocal.onlyIf { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
262 project.repositories.any { it.name == 'local' } |
175 | 263 } |
264 | |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
265 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
|
266 |
175 | 267 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
|
268 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
|
269 // 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
|
270 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
|
271 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
|
272 task(taskName) { |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
273 ext.outputDir = t |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
274 ext.propertyFile = "${e.toLowerCase()}.properties" |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
275 ext.buildenv = project.file('build/buildenv.txt') |
181 | 276 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
|
277 outputs.files new File(outputDir,propertyFile), buildenv |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
278 outputs.upToDateWhen { |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
279 gradle.env == project.previousBuildenv |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
280 } |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
281 doLast { |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
282 t.mkdirs() |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
283 buildenv.text = gradle.env |
173
50db7a832af5
add subproject name when generating properties
smith@nwoca.org
parents:
172
diff
changeset
|
284 def ps = gradle."environment${e}".toProperties() |
175 | 285 ps['ssdt.project'] = project.name |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
286 def pf = new File(outputDir,propertyFile) |
186 | 287 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
|
288 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
|
289 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
|
290 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
|
291 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
292 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
293 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
294 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
295 |
175 | 296 if (gradle.hasProperty('environmentDatabase')) { |
297 tasks.addRule("Pattern: database{Drop|Create}...: drops or creates the environment's database") { String taskName -> | |
298 if (taskName.startsWith('database') && (taskName.contains('Drop') || taskName.contains('Create'))) { | |
299 task(taskName) { | |
300 doLast { | |
301 def dropIt = taskName.contains("Drop") | |
302 def createIt = taskName.contains("Create") | |
303 def driverName = gradle.environmentDatabase.jdbc.driverClassName | |
304 def databaseUrl = gradle.environmentDatabase.jdbc.url | |
305 if (driverName != "org.postgresql.Driver") { | |
306 logger.info "skipping database operation for non-postgresql driver" | |
307 throw new StopActionException("driver $driverName not supported by $taskName") | |
308 } | |
309 if (!configurations.hasProperty('jdbcdriver')) { | |
310 throw new GradleException("databaseDrop requires a 'jdbcdriver' configuration with a postgresql (or other) driver") | |
311 } | |
312 configurations.jdbcdriver.each { File file -> | |
313 GroovyObject.class.classLoader.addURL(file.toURL()) | |
314 } | |
315 Class.forName(driverName) | |
316 def url = new URI(databaseUrl.substring(5)) | |
317 def jdbcBaseUrl = databaseUrl - url.path | |
318 def databaseName = url.path - "/" | |
319 def adminUrl = jdbcBaseUrl + "/postgres" | |
320 def sql = Sql.newInstance(adminUrl, | |
321 gradle.environmentDatabase.jdbc.username, | |
322 gradle.environmentDatabase.jdbc.password, | |
323 driverName) | |
324 if (dropIt) { | |
192
4f8780714e4d
disconnect sessions prior to dropping database
smith@nwoca.org
parents:
191
diff
changeset
|
325 logger.info "disconnecting sessions from $databaseName" |
202
b217dc3b654a
USASR-1835: Attempt to fix quoting of database name in sql
Christopher Springer <springer@nwoca.org>
parents:
201
diff
changeset
|
326 sql.execute "REVOKE CONNECT ON DATABASE \"" + databaseName + "\" FROM public;" |
b217dc3b654a
USASR-1835: Attempt to fix quoting of database name in sql
Christopher Springer <springer@nwoca.org>
parents:
201
diff
changeset
|
327 sql.execute "REVOKE CONNECT ON DATABASE \"" + databaseName + "\" FROM " + gradle.environmentDatabase.jdbc.username + ";" |
201
e721a977726b
Revoke ability to connect to database before attempting to drop it for task database(Drop|Create)
Christopher Springer <springer@nwoca.org>
parents:
200
diff
changeset
|
328 sql.execute "SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = '" + databaseName + "';" |
175 | 329 logger.info "dropping $databaseName (if exists) from $adminUrl" |
330 sql.execute 'DROP DATABASE IF EXISTS "' + databaseName + '";' | |
331 } | |
174
e949e86b570e
add databaseDrop|Create tasks for managing environment psql databases
smith@nwoca.org
parents:
173
diff
changeset
|
332 |
175 | 333 if (createIt) { |
334 logger.info "Creating database $databaseName at $adminUrl" | |
335 sql.execute 'CREATE DATABASE "' + databaseName + '";' | |
336 } | |
337 } | |
338 } | |
339 | |
340 } | |
341 } | |
342 } | |
343 | |
75 | 344 } |
345 | |
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
|
346 |
73 | 347 class ArtifactoryGradleSettings extends BuildAdapter implements BuildListener { |
175 | 348 |
73 | 349 def void projectsEvaluated(Gradle gradle) { |
83 | 350 def ssdtArtifactory = 'http://repos.ssdt.nwoca.org/artifactory' |
175 | 351 Project root = gradle.getRootProject() |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
352 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
353 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
354 def branchVersioning = gradle.rootProject.version == 'unspecified' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
355 |
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
|
356 root.allprojects { |
175 | 357 |
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
|
358 def thisProject = delegate |
175 | 359 thisProject.status = 'integration' |
360 if (gradle.branchStream) { | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
361 if (branchVersioning) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
362 thisProject.version = gradle.branch.version |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
363 thisProject.status = gradle.branch.defaultDependencyStatus |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
364 } else { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
365 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
366 thisProject.status = 'integration' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
367 def fixupVersion = thisProject.version - ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
368 if (gradle.branchStream == 'feature') { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
369 fixupVersion = fixupVersion + ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
370 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
371 if (gradle.branchStream == 'develop') { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
372 fixupVersion = fixupVersion + ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
373 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
374 if (gradle.branchStream in ['production', 'release', 'hotfix']) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
375 thisProject.status = 'release' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
376 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
377 thisProject.version = fixupVersion |
175 | 378 } |
379 } | |
380 | |
74 | 381 configurations.all { |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
382 resolutionStrategy.cacheChangingModulesFor gradle.cacheTimeout, 'seconds' |
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
383 resolutionStrategy.cacheDynamicVersionsFor gradle.cacheTimeout, 'seconds' |
175 | 384 } |
73 | 385 repositories { |
175 | 386 |
387 if (!gradle.bambooBuild) { | |
388 ivy { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
389 name = 'local' |
175 | 390 artifactPattern gradle.ivyUserDir + '/local/[artifact]-[revision](-[classifier]).[ext]' |
391 ivyPattern gradle.ivyUserDir + "/local/[module]-ivy-[revision].xml" | |
392 } | |
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
|
393 } |
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
|
394 |
175 | 395 if (gradle.branchStream == 'feature') { |
396 ivy { | |
397 name = 'ssdt-branches' | |
177 | 398 url = "${ssdtArtifactory}/ssdt-branches/${gradle.branchHash}/" |
399 layout "pattern", { | |
400 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" | |
401 ivy "[organization]/[module]/ivy-[revision].xml" | |
402 } | |
175 | 403 } |
74 | 404 } |
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
|
405 |
175 | 406 ivy { |
407 name = 'ssdt-snapshots' | |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
408 url = "${ssdtArtifactory}/ssdt-snapshots" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
409 layout "pattern", { |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
410 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
|
411 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
|
412 ivy "[organization]/[module]/ivy-[revision].xml" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
413 m2compatible = true |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
414 } |
175 | 415 } |
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
|
416 |
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
|
417 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
|
418 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
|
419 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
|
420 } |
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
|
421 |
175 | 422 } |
190
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
423 |
191 | 424 def remoteRepos = thisProject.repositories.findAll { it.hasProperty('url') && !(it.name == 'local' || it.url.toString().contains('ssdt')) } |
190
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
425 if (remoteRepos) { |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
426 logger.warn "WARNING: Remote repositories configured for $thisProject:\n" + remoteRepos.collect { "\t$it.name $it.url " }.join('\n') + "\n Moved to lowest priority..." |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
427 remoteRepos.each { |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
428 thisProject.repositories.remove(it) |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
429 thisProject.repositories.addLast(it) |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
430 } |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
431 } |
191 | 432 logger.info "$thisProject configured repositories:\n" + thisProject.repositories.collect {"\t$it.name ${it.hasProperty('url') ? it.url : '' }" }.join('\n') |
190
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
433 |
175 | 434 |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
435 if (thisProject.repositories.find { it.name == 'local' } && thisProject.getTasksByName('uploadArchives', false)) { |
87 | 436 uploadArchives { |
175 | 437 repositories { |
438 add thisProject.repositories.local | |
87 | 439 } |
440 } | |
175 | 441 |
126 | 442 thisProject.tasks.create("publishLocal") { |
87 | 443 description = "Publishes this projects artifacts to developer's local repository" |
444 dependsOn = ["uploadArchives"] | |
445 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
446 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
447 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
448 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
449 |
175 | 450 root.subprojects { p -> |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
451 if (root.useIndy()) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
452 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
|
453 if (groovyIndy) { |
203 | 454 println "enabling indy compilation on $p" |
175 | 455 [compileGroovy.groovyOptions, compileTestGroovy.groovyOptions]*.with { |
456 optimizationOptions = [indy: true] | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
457 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
458 } |
175 | 459 } |
73 | 460 } |
461 } | |
95
ebb42488396a
modify wrapper to use gradle version when executed
smith@nwoca.org
parents:
94
diff
changeset
|
462 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
463 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
464 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
465 task showEnvironments << { |
175 | 466 println "Defined environments: $gradle.environments" |
467 gradle.environments.each { e -> | |
468 println "\n $e:" | |
469 gradle.getProperty(e).flatten().sort { it.key }.each { k, v -> | |
470 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
|
471 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
472 } |
175 | 473 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
|
474 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
|
475 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
|
476 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
|
477 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
|
478 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
479 } |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
480 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
481 def loadEnvironments() { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
482 def developerPrivate = new Properties() |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
483 if (file('private.properties').exists()) { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
484 developerPrivate.load(file('private.properties').newReader()) |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
485 } |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
486 def envOverrides = [:] |
175 | 487 |
488 if (!hasProperty('env')) { | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
489 gradle.ext.env = developerPrivate.env ?: 'dev' |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
490 } else { |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
491 def values = getProperty('env').split(',') |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
492 gradle.ext.env = values.first() |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
493 values.tail().each { |
175 | 494 def (k, v) = it.split('=') |
495 envOverrides.put(k, v) | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
496 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
497 } |
175 | 498 |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
499 println "Environment is: $gradle.env ($envOverrides)" |
101 | 500 def slurper = new ConfigSlurper(gradle.env) |
175 | 501 slurper.setBinding(['gradle': gradle]) |
502 | |
503 def environment = slurper.parse( | |
504 '''deploy.mode="production" | |
162
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
505 environments { |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
506 test { deploy.mode="test" } |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
507 dev { deploy.mode="development"} |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
508 }''') |
175 | 509 if (developerPrivate['deploy.mode']) { |
510 environment.put('deploy.mode', developerPrivate['deploy.mode']) | |
511 } | |
512 | |
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
|
513 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
|
514 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
|
515 def environments = [] |
162
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
516 gradle.ext.environment = environment |
163
c5f09d617715
process environment files in name order
Dave Smith <smith@nwoca.org>
parents:
162
diff
changeset
|
517 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
|
518 def envName = envFile.name - '.groovy' |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
519 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
|
520 logger.info("loading environment $envFile.name") |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
521 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
522 def envCfg = slurper.parse(envFile.toURL()) |
99 | 523 envCfg.merge(slurper.parse(developerPrivate)) |
175 | 524 envCfg.put('ssdt.projectid', gradle.ssdtProjectId) |
525 envCfg.put('ssdt.environment', gradle.env) | |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
526 if (privateFile.exists()) { |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
527 logger.info("loading private environment $privateFile") |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
528 envCfg.merge(slurper.parse(privateFile.toURL())) |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
529 } |
175 | 530 |
531 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
|
532 it.value.split(',').each { p -> |
175 | 533 def (k, v) = p.split('=') |
534 logger.info("$envName: overriding " + k + "=" + v + " in $it") | |
535 envCfg.put(k, v) | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
536 } |
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
537 } |
175 | 538 |
539 envOverrides.each { k, v -> | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
540 logger.info("$envName: overriding " + k + "=" + v) |
175 | 541 envCfg.put(k, v) |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
542 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
543 environment.merge(envCfg) |
175 | 544 if (envName != 'environment') { |
545 gradle.ext[envName] = envCfg | |
546 environments << envName | |
99 | 547 } |
175 | 548 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
549 environment.merge(slurper.parse(developerPrivate)) |
175 | 550 def deployMode = environment.deploy.mode ?: 'development' |
551 environments.each { gradle.ext[it].put('ssdt.deployment.mode', deployMode) } | |
99 | 552 environments << 'environment' |
101 | 553 gradle.ext.environments = environments |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
554 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
555 } |
166
9947c2c8ff44
switch to hash for layout of feature branches
Dave Smith <smith@nwoca.org>
parents:
165
diff
changeset
|
556 |
178 | 557 |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
558 @ToString(includeNames=true) |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
559 class RuntimeInfo { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
560 // OS memory in megabytes, zero if unknown |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
561 int systemMemory = 0 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
562 int systemFreeMemory = 0 |
205 | 563 String javaVersion = System.getProperty('java.version') |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
564 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
565 RuntimeInfo() { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
566 try { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
567 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
|
568 int value = (it[1] as Long) / 1024 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
569 if (it[0].startsWith('MemTotal')) { systemMemory = value } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
570 if (it[0].startsWith('MemFree')) { systemFreeMemory = value } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
571 } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
572 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
573 } catch (e) { } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
574 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
575 } |
200 | 576 |
577 void requireMemory(int megabytes) { | |
578 if (systemFreeMemory > 0 && systemFreeMemory < megabytes) { | |
579 throw new GradleException("insufficent free OS memory for this build (available: ${systemFreeMemory}m, required: ${megabytes}m)") | |
580 } | |
581 } | |
582 /** | |
583 * Returns maximum memory available upto the value specified. | |
584 */ | |
585 int maxMemory(int megabytes) { | |
586 if (systemFreeMemory) { | |
587 [systemFreeMemory,megabytes].min() | |
588 } else { megabytes } | |
589 | |
590 } | |
205 | 591 |
592 void requireJava(String version) { | |
593 | |
594 if ( version && !javaVersion.startsWith(version)) { | |
595 throw new GradleException("Requires java version $version but running under $javaVersion") | |
596 } | |
597 } | |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
598 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
599 } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
600 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
601 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
602 @TupleConstructor |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
603 @Sortable |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
604 class Version { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
605 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
606 Integer major = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
607 Integer minor = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
608 Integer patch = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
609 Boolean snapshot = true |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
610 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
611 Version nextVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
612 new Version(major, minor + 1, 0) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
613 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
614 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
615 String toString() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
616 "${major}.${minor}.${patch}${snapshot ? '.SNAPSHOT' : ''}" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
617 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
618 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
619 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
620 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
621 |
210 | 622 @ToString(includes=['name','shortName','buildVersion','imageId','deployName'],includeNames= true) |
183 | 623 class BranchInfo { |
178 | 624 def name |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
625 def stream = "none" |
209 | 626 def buildNumber = "" |
211 | 627 def changeset = "" |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
628 def version |
178 | 629 |
630 BranchInfo(name) { | |
631 this.name = name | |
632 if (!name) { | |
184 | 633 this.name = determineName() ?: '' |
178 | 634 } |
635 this.name = this.name.replace('@', '-') | |
636 determineStream() | |
209 | 637 buildNumber = System.getenv('bamboo_buildNumber') ?: "" |
211 | 638 changeset = System.getenv('bamboo_planRepository_revision') ?: "" |
639 } | |
209 | 640 |
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
|
641 String getDefaultDependencyStatus() { |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
642 return isRelease() ? 'release' : 'integration' |
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
|
643 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
644 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
645 private boolean isRelease() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
646 return stream in ['release', 'hotfix'] |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
647 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
648 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
649 def getShortName() { |
209 | 650 def result = name.contains('/') ? name.split('/')[1] : name |
651 } | |
652 | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
653 String getBuildVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
654 def v = isRelease() ? shortName - "v": "" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
655 return v |
209 | 656 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
657 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
658 def Version getVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
659 if (!version) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
660 if (isRelease()) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
661 version = new Version(*getBuildVersion().split('\\.')*.toInteger(), false) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
662 } else { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
663 version = findSnapshotVersion() |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
664 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
665 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
666 return version |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
667 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
668 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
669 def getImageId() { |
210 | 670 (buildVersion ?: shortName.take(25)) + (buildNumber ? "-${buildNumber}" : "-0") |
209 | 671 } |
178 | 672 |
210 | 673 def getDeployName() { |
674 (buildVersion ?: shortName.take(25)).toLowerCase().collectReplacements { | |
675 ('a'..'z').contains(it) || ('0'..'9').contains(it) || it == "-" ? null : '-' | |
676 } | |
677 } | |
678 | |
178 | 679 def getHash() { |
680 generateMD5(name) | |
681 } | |
682 def generateMD5(String s) { | |
683 def digest = java.security.MessageDigest.getInstance("MD5") | |
684 digest.update(s.bytes); | |
685 new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0') | |
686 } | |
687 | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
688 private findSnapshotVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
689 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
|
690 it.startsWith( 'release') || it.startsWith( 'hotfix') |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
691 }.collect { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
692 it.replaceAll('\\s+',' ').split(' ')[0].split('/')[1] - 'v' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
693 }.collect { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
694 new Version(*it.split('\\.')*.toInteger()) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
695 }.sort { v1, v2 -> v2 <=> v1 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
696 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
697 return versions ? versions.first().nextVersion() : new Version().nextVersion() |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
698 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
699 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
700 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
701 |
178 | 702 def determineName() { |
183 | 703 try { |
704 def branch = "hg branch".execute().text.trim() | |
705 def rawParents = 'hg parents'.execute().text | |
706 def parent = rawParents.split('\n').find { it.startsWith("branch") }?.split(":")?.getAt(1)?.trim() | |
707 return parent ?: branch | |
708 } catch (e) { | |
184 | 709 ['.hg/branch', '../.hg/branch'].findResult { |
710 new File(it).exists() ? new File(it).text : null | |
183 | 711 } |
712 } | |
178 | 713 } |
714 | |
715 void determineStream() { | |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
716 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
|
717 if (flowConfig.exists()) { |
178 | 718 def flows = new Properties() |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
719 flows.load(flowConfig.newReader()) |
178 | 720 flows.stringPropertyNames().each { |
721 if (!it.startsWith("[") && name.startsWith(flows.getProperty(it))) { | |
722 stream = it | |
723 } | |
724 } | |
725 } | |
726 } | |
727 | |
728 } | |
729 |