Mercurial > public > develkit
annotate init20.gradle @ 187:6d5b9cf9fd97
add psql as buildscript dependency
author | smith@nwoca.org |
---|---|
date | Thu, 05 Mar 2015 17:14:22 +0000 |
parents | 21b4b58e3cd8 |
children | 711ef14d18d2 |
rev | line source |
---|---|
175 | 1 import groovy.sql.Sql |
178 | 2 import groovy.transform.ToString |
175 | 3 |
4 final GradleVersion gradleCurrent = GradleVersion.current() | |
5 final GradleVersion gradleV20 = GradleVersion.version('2.0') | |
6 println "Gradle Version: $gradleCurrent" | |
7 if (gradleCurrent < gradleV20) { | |
8 throw new RuntimeException("this init script requires Gradle version 2.0 or higher") | |
9 } | |
91 | 10 |
101 | 11 gradle.ext.ssdtDevelkitLocation = gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit' |
73 | 12 |
94
1290b23e7b76
modify ivy and gradle to use same local repo
smith@nwoca.org
parents:
92
diff
changeset
|
13 ant.property(file: System.getProperty('user.home') + "/.ssdt/private.properties") |
101 | 14 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
|
15 |
140 | 16 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
|
17 |
73 | 18 gradle.addListener(new ArtifactoryGradleSettings()) |
19 | |
175 | 20 def hostname |
21 try { | |
22 hostname = "hostname".execute().text.toLowerCase().readLines().first() | |
23 } catch (e) { | |
24 hostname = 'unknown' | |
25 } | |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
26 |
175 | 27 gradle.ext.bambooBuild = System.getenv().any { |
28 it.key.toLowerCase().contains('bamboo') | |
29 } || hostname?.startsWith('ssdt-') | |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
30 |
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
|
31 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
|
32 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
|
33 |
175 | 34 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
|
35 |
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
|
36 gradle.ext.hgRepositoryUrl = "" |
175 | 37 try { |
38 gradle.ext.hgRepositoryUrl = ("hg path".execute().text.split('=') ?: ['', ''])[1].trim() | |
39 } catch (e) { | |
40 } | |
159
0c48cfd1938b
allow projects to override branchName
Dave Smith <smith@nwoca.org>
parents:
158
diff
changeset
|
41 |
169 | 42 def springModuleTranslator = [ |
175 | 43 'spring-transaction': 'spring-tx', |
44 'spring-web-servlet': 'spring-webmvc', | |
45 ].withDefault { it } | |
168
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
46 |
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
47 gradle.ext.normalizeSpring = { DependencyResolveDetails details -> |
175 | 48 if (details.requested.group == 'org.springframework' && details.requested.name.startsWith('org.springframework.')) { |
49 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
50 details.useTarget(group: 'org.springframework', name: shortName, version: details.requested.version) | |
51 } | |
52 if (details.requested.group == 'org.springframework.security' && details.requested.name.startsWith('org.springframework.')) { | |
53 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
54 details.useTarget("${details.requested.group}:$shortName:${details.requested.version}") | |
55 } | |
56 } | |
57 | |
178 | 58 gradle.ext.branch = new BranchInfo(System.getenv('bamboo_planRepository_branch')) |
59 gradle.ext.branchName = gradle.branch.name | |
60 gradle.ext.branchStream = gradle.branch.stream | |
61 gradle.ext.branchHash = gradle.branch.hash | |
62 println "${gradle.hgRepositoryUrl} ${gradle.branch}" | |
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
|
63 |
155
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
64 loadEnvironments() |
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
65 |
175 | 66 gradle.environment.put('hgRepositoryUrl', gradle.hgRepositoryUrl) |
178 | 67 gradle.environment.put('branchName', gradle.branch.name) |
68 gradle.environment.put('branchStream', gradle.branch.stream) | |
69 gradle.environment.put('branchHash', gradle.branch.hash) | |
70 | |
160
6af68acaf9b2
modify to use bamboo env varible to override branchName
Dave Smith <smith@nwoca.org>
parents:
159
diff
changeset
|
71 |
175 | 72 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
73 rootProject.ext.indyCapable = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
74 boolean capable = true |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
75 try { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
76 Class.forName('java.lang.invoke.MethodHandle') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
77 } catch (e) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
78 capable = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
79 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
80 capable && !rootProject.hasProperty('skipIndy') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
81 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
82 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
83 rootProject.ext.useIndy = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
84 boolean indy = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
85 // 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
|
86 indy |= System.hasProperty('indy') && Boolean.valueOf(System.getProperty('indy')) |
79 | 87 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
88 // check ssdt environment for indy property. |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
89 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
|
90 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
91 // check if the main project has an extension property setting indy (-Pindy). |
175 | 92 if (rootProject.hasProperty('indy')) { |
93 indy = (Boolean.valueOf(rootProject.indy)) | |
94 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
95 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
96 // set the groovy runtime system property to ensure forked junit test will get the indy flag properly |
175 | 97 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
|
98 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
99 indy && rootProject.indyCapable() |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
100 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
101 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
102 println "Indy available: ${rootProject.indyCapable()} enabled: ${rootProject.useIndy()}" |
175 | 103 |
79 | 104 if (gradle.bambooBuild) { |
175 | 105 gradle.ext.ssdtGradlekitLocation = gradle.ext.has('ssdtGradlekitLocation') ? gradle.ssdtGradlekitLocation : 'http://hg.ssdt-ohio.org/ssdt/gradlekit/raw-file/tip' |
106 logger.info "applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)" | |
181 | 107 apply from: "${gradle.ssdtGradlekitLocation}/artifactory20.gradle" |
79 | 108 } |
76 | 109 |
126 | 110 |
111 buildscript { | |
112 repositories { | |
171 | 113 maven { url 'http://repos.ssdt.nwoca.org/artifactory/ssdt-repo' } |
126 | 114 } |
187 | 115 dependencies { |
116 classpath 'postgresql:postgresql:9.1-901.jdbc4' | |
117 } | |
126 | 118 } |
119 | |
175 | 120 apply from: "${gradle.ssdtDevelkitLocation}/metrics.gradle" |
85 | 121 |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
122 rootProject.afterEvaluate { r -> |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
123 |
175 | 124 if (r.plugins.hasPlugin(org.gradle.plugins.ide.idea.IdeaPlugin)) { |
125 | |
126 r.idea.project.ipr.withXml { xml -> | |
127 if (file('.hg').exists()) { | |
128 println 'enabling HG on project' | |
129 def vcs = findComponent(xml.asNode(), 'VcsDirectoryMappings') | |
130 vcs.mapping.@vcs = 'hg4idea' | |
131 } | |
132 | |
133 def codeStyle = findComponent(xml.asNode(), 'ProjectCodeStyleSettingsManager') | |
134 if (codeStyle) { | |
135 xml.asNode().remove(codeStyle) | |
136 } | |
137 | |
138 def styleManager = xml.asNode().appendNode('component', [name: 'ProjectCodeStyleSettingsManager']) | |
139 styleManager.appendNode 'option', [name: 'USE_PER_PROJECT_SETTINGS', value: true] | |
140 | |
141 def styleOptions = new NodeBuilder().option(name: 'PER_PROJECT_SETTINGS') { | |
142 value { | |
143 GroovyCodeStyleSettings { | |
144 option(name: 'CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND', value: '10') | |
145 option(name: 'PACKAGES_TO_USE_IMPORT_ON_DEMAND') { | |
146 value { | |
147 'package'(name: "java.awt", withSubpackages: false, static: false) | |
148 'package'(name: "javax.swing", withSubpackages: false, static: false) | |
149 'package'(name: "javax.persistence", withSubpackages: false, static: false) | |
150 'package'(name: "javax.validation", withSubpackages: true, static: false) | |
151 } | |
152 } | |
153 } | |
154 XML { | |
155 option(name: 'XML_LEGACY_SETTINGS_IMPORTED', value: true) | |
156 } | |
157 | |
158 } | |
159 } | |
160 | |
161 styleManager.append styleOptions | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
162 |
175 | 163 if (r.group.contains('org.ssdt')) { |
164 | |
165 def copyRight = findComponent(xml.asNode(), 'CopyrightManager') | |
166 if (copyRight) { | |
167 xml.asNode().remove(copyRight) | |
168 } | |
169 | |
170 copyRight = new NodeBuilder().component(name: 'CopyrightManager', default: 'ODE') { | |
171 | |
172 copyright { | |
173 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/)') | |
174 option(name: 'keyword', value: 'Copyright') | |
175 option(name: 'allowReplaceKeyword', value: 'South Front') | |
176 option(name: 'myName', value: 'ODE') | |
177 option(name: 'myLocal', value: true) | |
178 } | |
179 LanguageOptions(name: 'CSS') { | |
180 option(name: 'fileTypeOverride', value: 1) | |
181 } | |
182 LanguageOptions(name: 'JSP') { | |
183 option(name: 'fileTypeOverride', value: 1) | |
184 option(name: 'prefixLines', value: false) | |
185 } | |
186 LanguageOptions(name: 'JSPX') { | |
187 option(name: 'fileTypeOverride', value: 1) | |
188 option(name: 'prefixLines', value: false) | |
189 } | |
190 LanguageOptions(name: 'JavaScript') { | |
191 option(name: 'fileTypeOverride', value: 1) | |
192 } | |
193 LanguageOptions(name: 'Properties') { | |
194 option(name: 'fileTypeOverride', value: 1) | |
195 } | |
196 } | |
197 | |
198 xml.asNode().append copyRight | |
199 | |
200 } | |
201 } | |
202 } | |
203 | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
204 } |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
205 |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
206 def findComponent(project, name) { |
175 | 207 project.component.find { it.@name == name } |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
208 } |
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
209 |
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
210 allprojects { |
85 | 211 |
84 | 212 task cleanLocal(description: "removes all artifacts from developer's local repository") << { |
213 | |
175 | 214 def local = project.repositories.find { it.name == 'local' } |
215 if (local) { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
216 logger.info "removing local repo: $it" |
175 | 217 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
|
218 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
|
219 localDir.deleteDir() |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
220 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
|
221 if (localDir.exists()) { |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
222 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
|
223 } |
75 | 224 } |
175 | 225 } |
226 | |
227 cleanLocal.onlyIf { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
228 project.repositories.any { it.name == 'local' } |
175 | 229 } |
230 | |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
231 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
|
232 |
175 | 233 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
|
234 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
|
235 // 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
|
236 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
|
237 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
|
238 task(taskName) { |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
239 ext.outputDir = t |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
240 ext.propertyFile = "${e.toLowerCase()}.properties" |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
241 ext.buildenv = project.file('build/buildenv.txt') |
181 | 242 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
|
243 outputs.files new File(outputDir,propertyFile), buildenv |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
244 outputs.upToDateWhen { |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
245 gradle.env == project.previousBuildenv |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
246 } |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
247 doLast { |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
248 t.mkdirs() |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
249 buildenv.text = gradle.env |
173
50db7a832af5
add subproject name when generating properties
smith@nwoca.org
parents:
172
diff
changeset
|
250 def ps = gradle."environment${e}".toProperties() |
175 | 251 ps['ssdt.project'] = project.name |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
252 def pf = new File(outputDir,propertyFile) |
186 | 253 ext.outputPropertyFile = pf |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
254 ps.store(pf.newOutputStream(), "by $taskName of $this") |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
255 def l = pf.readLines().sort() |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
256 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
|
257 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
258 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
259 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
260 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
261 |
175 | 262 if (gradle.hasProperty('environmentDatabase')) { |
263 tasks.addRule("Pattern: database{Drop|Create}...: drops or creates the environment's database") { String taskName -> | |
264 if (taskName.startsWith('database') && (taskName.contains('Drop') || taskName.contains('Create'))) { | |
265 task(taskName) { | |
266 doLast { | |
267 def dropIt = taskName.contains("Drop") | |
268 def createIt = taskName.contains("Create") | |
269 def driverName = gradle.environmentDatabase.jdbc.driverClassName | |
270 def databaseUrl = gradle.environmentDatabase.jdbc.url | |
271 if (driverName != "org.postgresql.Driver") { | |
272 logger.info "skipping database operation for non-postgresql driver" | |
273 throw new StopActionException("driver $driverName not supported by $taskName") | |
274 } | |
275 if (!configurations.hasProperty('jdbcdriver')) { | |
276 throw new GradleException("databaseDrop requires a 'jdbcdriver' configuration with a postgresql (or other) driver") | |
277 } | |
278 configurations.jdbcdriver.each { File file -> | |
279 GroovyObject.class.classLoader.addURL(file.toURL()) | |
280 } | |
281 Class.forName(driverName) | |
282 def url = new URI(databaseUrl.substring(5)) | |
283 def jdbcBaseUrl = databaseUrl - url.path | |
284 def databaseName = url.path - "/" | |
285 def adminUrl = jdbcBaseUrl + "/postgres" | |
286 def sql = Sql.newInstance(adminUrl, | |
287 gradle.environmentDatabase.jdbc.username, | |
288 gradle.environmentDatabase.jdbc.password, | |
289 driverName) | |
290 if (dropIt) { | |
291 logger.info "dropping $databaseName (if exists) from $adminUrl" | |
292 sql.execute 'DROP DATABASE IF EXISTS "' + databaseName + '";' | |
293 } | |
174
e949e86b570e
add databaseDrop|Create tasks for managing environment psql databases
smith@nwoca.org
parents:
173
diff
changeset
|
294 |
175 | 295 if (createIt) { |
296 logger.info "Creating database $databaseName at $adminUrl" | |
297 sql.execute 'CREATE DATABASE "' + databaseName + '";' | |
298 } | |
299 } | |
300 } | |
301 | |
302 } | |
303 } | |
304 } | |
305 | |
75 | 306 } |
307 | |
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
|
308 |
73 | 309 class ArtifactoryGradleSettings extends BuildAdapter implements BuildListener { |
175 | 310 |
73 | 311 def void projectsEvaluated(Gradle gradle) { |
83 | 312 def ssdtArtifactory = 'http://repos.ssdt.nwoca.org/artifactory' |
175 | 313 Project root = gradle.getRootProject() |
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
|
314 root.allprojects { |
175 | 315 |
316 | |
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
|
317 def thisProject = delegate |
175 | 318 thisProject.status = 'integration' |
319 if (gradle.branchStream) { | |
320 thisProject.status = 'integration' | |
321 def fixupVersion = thisProject.version - ".SNAPSHOT" | |
322 if (gradle.branchStream == 'feature') { | |
323 fixupVersion = fixupVersion + ".SNAPSHOT" | |
324 } | |
325 if (gradle.branchStream == 'develop') { | |
326 fixupVersion = fixupVersion + ".SNAPSHOT" | |
327 } | |
182 | 328 if (gradle.branchStream in ['production', 'release','hotfix']) { |
329 thisProject.status = 'release' | |
175 | 330 } |
182 | 331 thisProject.version = fixupVersion |
175 | 332 } |
333 | |
74 | 334 configurations.all { |
109
029db4d977fe
fix cache setting of changing and and dynamic revisions
smith@nwoca.org
parents:
107
diff
changeset
|
335 resolutionStrategy.cacheChangingModulesFor 60 * 60 * 8, 'seconds' |
029db4d977fe
fix cache setting of changing and and dynamic revisions
smith@nwoca.org
parents:
107
diff
changeset
|
336 resolutionStrategy.cacheDynamicVersionsFor 60 * 60 * 8, 'seconds' |
175 | 337 } |
73 | 338 repositories { |
175 | 339 |
340 if (!gradle.bambooBuild) { | |
341 ivy { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
342 name = 'local' |
175 | 343 artifactPattern gradle.ivyUserDir + '/local/[artifact]-[revision](-[classifier]).[ext]' |
344 ivyPattern gradle.ivyUserDir + "/local/[module]-ivy-[revision].xml" | |
345 } | |
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
|
346 } |
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
|
347 |
175 | 348 if (gradle.branchStream == 'feature') { |
349 ivy { | |
350 name = 'ssdt-branches' | |
177 | 351 url = "${ssdtArtifactory}/ssdt-branches/${gradle.branchHash}/" |
352 layout "pattern", { | |
353 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" | |
354 ivy "[organization]/[module]/ivy-[revision].xml" | |
355 } | |
175 | 356 } |
74 | 357 } |
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
|
358 |
175 | 359 ivy { |
360 name = 'ssdt-snapshots' | |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
361 url = "${ssdtArtifactory}/ssdt-snapshots" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
362 layout "pattern", { |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
363 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
|
364 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
|
365 ivy "[organization]/[module]/ivy-[revision].xml" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
366 m2compatible = true |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
367 } |
175 | 368 } |
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
|
369 |
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
|
370 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
|
371 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
|
372 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
|
373 } |
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
|
374 |
175 | 375 |
376 } | |
377 | |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
378 if (thisProject.repositories.find { it.name == 'local' } && thisProject.getTasksByName('uploadArchives', false)) { |
87 | 379 uploadArchives { |
175 | 380 repositories { |
381 add thisProject.repositories.local | |
87 | 382 } |
383 } | |
175 | 384 |
126 | 385 thisProject.tasks.create("publishLocal") { |
87 | 386 description = "Publishes this projects artifacts to developer's local repository" |
387 dependsOn = ["uploadArchives"] | |
388 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
389 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
390 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
391 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
392 |
175 | 393 root.subprojects { p -> |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
394 if (root.useIndy()) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
395 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
|
396 if (groovyIndy) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
397 logger.info "enabling indy on $p" |
175 | 398 [compileGroovy.groovyOptions, compileTestGroovy.groovyOptions]*.with { |
399 optimizationOptions = [indy: true] | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
400 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
401 } |
175 | 402 } |
73 | 403 } |
404 } | |
95
ebb42488396a
modify wrapper to use gradle version when executed
smith@nwoca.org
parents:
94
diff
changeset
|
405 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
406 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
407 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
408 task showEnvironments << { |
175 | 409 println "Defined environments: $gradle.environments" |
410 gradle.environments.each { e -> | |
411 println "\n $e:" | |
412 gradle.getProperty(e).flatten().sort { it.key }.each { k, v -> | |
413 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
|
414 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
415 } |
175 | 416 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
|
417 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
|
418 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
|
419 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
|
420 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
|
421 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
422 } |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
423 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
424 def loadEnvironments() { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
425 def developerPrivate = new Properties() |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
426 if (file('private.properties').exists()) { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
427 developerPrivate.load(file('private.properties').newReader()) |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
428 } |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
429 def envOverrides = [:] |
175 | 430 |
431 if (!hasProperty('env')) { | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
432 gradle.ext.env = developerPrivate.env ?: 'dev' |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
433 } else { |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
434 def values = getProperty('env').split(',') |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
435 gradle.ext.env = values.first() |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
436 values.tail().each { |
175 | 437 def (k, v) = it.split('=') |
438 envOverrides.put(k, v) | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
439 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
440 } |
175 | 441 |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
442 println "Environment is: $gradle.env ($envOverrides)" |
101 | 443 def slurper = new ConfigSlurper(gradle.env) |
175 | 444 slurper.setBinding(['gradle': gradle]) |
445 | |
446 def environment = slurper.parse( | |
447 '''deploy.mode="production" | |
162
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
448 environments { |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
449 test { deploy.mode="test" } |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
450 dev { deploy.mode="development"} |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
451 }''') |
175 | 452 if (developerPrivate['deploy.mode']) { |
453 environment.put('deploy.mode', developerPrivate['deploy.mode']) | |
454 } | |
455 | |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
456 def environments = [] |
162
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
457 gradle.ext.environment = environment |
163
c5f09d617715
process environment files in name order
Dave Smith <smith@nwoca.org>
parents:
162
diff
changeset
|
458 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
|
459 def envName = envFile.name - '.groovy' |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
460 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
|
461 logger.info("loading environment $envFile.name") |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
462 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
463 def envCfg = slurper.parse(envFile.toURL()) |
99 | 464 envCfg.merge(slurper.parse(developerPrivate)) |
175 | 465 envCfg.put('ssdt.projectid', gradle.ssdtProjectId) |
466 envCfg.put('ssdt.environment', gradle.env) | |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
467 if (privateFile.exists()) { |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
468 logger.info("loading private environment $privateFile") |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
469 envCfg.merge(slurper.parse(privateFile.toURL())) |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
470 } |
175 | 471 |
472 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
|
473 it.value.split(',').each { p -> |
175 | 474 def (k, v) = p.split('=') |
475 logger.info("$envName: overriding " + k + "=" + v + " in $it") | |
476 envCfg.put(k, v) | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
477 } |
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
478 } |
175 | 479 |
480 envOverrides.each { k, v -> | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
481 logger.info("$envName: overriding " + k + "=" + v) |
175 | 482 envCfg.put(k, v) |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
483 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
484 environment.merge(envCfg) |
175 | 485 if (envName != 'environment') { |
486 gradle.ext[envName] = envCfg | |
487 environments << envName | |
99 | 488 } |
175 | 489 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
490 environment.merge(slurper.parse(developerPrivate)) |
175 | 491 def deployMode = environment.deploy.mode ?: 'development' |
492 environments.each { gradle.ext[it].put('ssdt.deployment.mode', deployMode) } | |
99 | 493 environments << 'environment' |
101 | 494 gradle.ext.environments = environments |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
495 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
496 } |
166
9947c2c8ff44
switch to hash for layout of feature branches
Dave Smith <smith@nwoca.org>
parents:
165
diff
changeset
|
497 |
178 | 498 |
183 | 499 @ToString |
500 class BranchInfo { | |
178 | 501 def name |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
502 def stream = "none" |
178 | 503 |
504 BranchInfo(name) { | |
505 this.name = name | |
506 if (!name) { | |
184 | 507 this.name = determineName() ?: '' |
178 | 508 } |
509 this.name = this.name.replace('@', '-') | |
510 determineStream() | |
511 } | |
512 | |
513 def getHash() { | |
514 generateMD5(name) | |
515 } | |
516 def generateMD5(String s) { | |
517 def digest = java.security.MessageDigest.getInstance("MD5") | |
518 digest.update(s.bytes); | |
519 new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0') | |
520 } | |
521 | |
522 def determineName() { | |
183 | 523 try { |
524 def branch = "hg branch".execute().text.trim() | |
525 def rawParents = 'hg parents'.execute().text | |
526 def parent = rawParents.split('\n').find { it.startsWith("branch") }?.split(":")?.getAt(1)?.trim() | |
527 return parent ?: branch | |
528 } catch (e) { | |
184 | 529 ['.hg/branch', '../.hg/branch'].findResult { |
530 new File(it).exists() ? new File(it).text : null | |
183 | 531 } |
532 } | |
178 | 533 } |
534 | |
535 void determineStream() { | |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
536 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
|
537 if (flowConfig.exists()) { |
178 | 538 def flows = new Properties() |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
539 flows.load(flowConfig.newReader()) |
178 | 540 flows.stringPropertyNames().each { |
541 if (!it.startsWith("[") && name.startsWith(flows.getProperty(it))) { | |
542 stream = it | |
543 } | |
544 } | |
545 } | |
546 } | |
547 | |
548 } | |
549 |