1
- springVersion = " 3.0.5.RELEASE"
2
- grailsVersion = " 1.3.7"
3
- slf4jVersion = " 1.6.2"
4
- groovyVersion = System . getProperty(' groovyVersion' ) ?: ' 1.7.8'
1
+ project. ext {
2
+ springVersion = " 3.0.5.RELEASE"
3
+ grailsVersion = " 1.3.7"
4
+ slf4jVersion = " 1.6.2"
5
+ groovyVersion = System . getProperty(' groovyVersion' ) ?: ' 1.7.10'
6
+ }
5
7
6
8
def groovyMajorVersion = groovyVersion[0 .. 2 ]
7
9
def spockDependency = " org.spockframework:spock-core:0.5-groovy-${ groovyMajorVersion} "
@@ -23,21 +25,45 @@ configurations {
23
25
apply plugin : ' idea'
24
26
apply plugin : ' project-report'
25
27
28
+
29
+ allprojects {
30
+ repositories {
31
+ maven { url " http://repo.grails.org/grails/core" }
32
+ // mavenLocal()
33
+ }
34
+
35
+ configurations {
36
+ all {
37
+ resolutionStrategy {
38
+ def cacheHours = isCiBuild ? 1 : 24
39
+ cacheDynamicVersionsFor cacheHours, ' hours'
40
+ cacheChangingModulesFor cacheHours, ' hours'
41
+ }
42
+ }
43
+ }
44
+ }
45
+
26
46
subprojects {
27
- releaseType = " RELEASE"
28
- // releaseType = "BUILD-SNAPSHOT"
47
+ ext {
48
+ // releaseType = "RELEASE"
49
+ releaseType = " BUILD-SNAPSHOT"
29
50
// releaseType = "RC3"
30
- version = " 1.0.2.${ releaseType} "
51
+ isCiBuild = project. hasProperty(" isCiBuild" )
52
+ }
53
+
54
+ version = " 1.0.3.${ releaseType} "
31
55
group = " org.grails"
32
56
57
+
33
58
def isStandardGroovyMavenProject = isGroovyProject(project)
34
59
35
60
if (isStandardGroovyMavenProject) {
36
61
apply plugin : ' groovy'
37
62
apply plugin : ' eclipse'
38
63
apply plugin : ' maven'
39
64
apply plugin : ' idea'
40
- apply from : " file:${ rootDir} /clover.gradle"
65
+ apply plugin : ' signing'
66
+ /* apply from: "file:${rootDir}/clover.gradle"*/
41
67
42
68
install. doLast {
43
69
def gradleArtifactCache = new File (gradle. gradleUserHomeDir, " cache" )
@@ -55,15 +81,6 @@ subprojects {
55
81
def isGormDatasource = project. name. startsWith(" grails-datastore-gorm-" ) && ! project. name. endsWith(" tck" ) && ! project. name. endsWith(" plugin-support" )
56
82
def isDocumentationProject = project. name. startsWith(" grails-documentation" )
57
83
58
- repositories {
59
- mavenRepo name :' mavenLocal' ,
60
- urls :new File (System . getProperty(" user.home" ), " .m2/repository" ). toURL(). toString()
61
- mavenRepo(urls : " http://repo.grails.org/grails/core" ) {
62
- if (project. hasProperty(' snapshotTimeout' )) {
63
- setSnapshotTimeout(Long . parseLong(project. snapshotTimeout))
64
- }
65
- }
66
- }
67
84
68
85
dependencies {
69
86
if (isStandardGroovyMavenProject) {
@@ -102,7 +119,7 @@ subprojects {
102
119
}
103
120
ant. docs(src :" src/docs" , dest :destinationDir, properties :" src/docs/doc.properties" )
104
121
}
105
- docs. destinationDir = " ${ buildDir} /docs"
122
+ docs. ext . destinationDir = " ${ buildDir} /docs"
106
123
107
124
108
125
task clean << {
@@ -137,11 +154,11 @@ subprojects {
137
154
}
138
155
139
156
test. doFirst {
140
- def tckClassesDir = project(" :grails-datastore-gorm-tck" ). sourceSets. main. classesDir
157
+ def tckClassesDir = project(" :grails-datastore-gorm-tck" ). sourceSets. main. output . classesDir
141
158
def thisProjectsTests = // surely there is a less hardcoded way to do this
142
159
copy {
143
160
from tckClassesDir
144
- into sourceSets. test. classesDir
161
+ into sourceSets. test. output . classesDir
145
162
include " **/*.class"
146
163
exclude { details ->
147
164
// Do not copy across any TCK class (or nested classes of that class)
@@ -162,9 +179,6 @@ subprojects {
162
179
}
163
180
164
181
if (isStandardGroovyMavenProject) {
165
- configurations {
166
- meta
167
- }
168
182
169
183
task sourcesJar(type : Jar , dependsOn :classes) {
170
184
classifier = ' sources'
@@ -176,10 +190,17 @@ subprojects {
176
190
from javadoc. destinationDir
177
191
}
178
192
193
+
179
194
artifacts {
180
- meta sourcesJar
181
- meta javadocJar
195
+ archives jar
196
+ archives sourcesJar
197
+ archives javadocJar
198
+ }
199
+
200
+ signing {
201
+ sign configurations. archives
182
202
}
203
+
183
204
configure(install. repositories. mavenInstaller) {
184
205
pom. whenConfigured { pom ->
185
206
def dependency = pom. dependencies. find { dep -> dep. artifactId == ' slf4j-simple' }
@@ -198,8 +219,6 @@ subprojects {
198
219
199
220
uploadArchives {
200
221
description = " Does a maven deploy of archives artifacts"
201
- def milestoneRepositoryUrl = " http://repo.grails.org/grails/libs-releases-local"
202
- def snapshotRepositoryUrl = " http://repo.grails.org/grails/libs-snapshots-local"
203
222
204
223
// add a configuration with a classpath that includes our s3 maven deployer
205
224
configurations { deployerJars }
@@ -208,54 +227,64 @@ subprojects {
208
227
}
209
228
210
229
repositories. mavenDeployer {
211
- switch (releaseType) {
212
- case ' RELEASE' :
213
- repository(url : milestoneRepositoryUrl)
214
- description + = milestoneRepositoryUrl
215
-
216
- case ~/ M[0-9]+/ :
217
- description + = milestoneRepositoryUrl
218
- // fall through and pick up config below
219
-
220
- case ~/ RC[0-9]+/ :
221
- description + = milestoneRepositoryUrl
222
- // fall through and pick up config below
223
-
224
-
225
- case ' BUILD-SNAPSHOT' :
226
- description + = snapshotRepositoryUrl
227
- final username = project. properties[" artifactoryPublishUsername" ]
228
- final password = project. properties[" artifactoryPublishPassword" ]
229
-
230
- def credentials = [userName : username, password : password]
231
- org.apache.ivy.util.url.CredentialsStore . INSTANCE . addCredentials(" Artifactory Realm" , " repo.grails.org" , username, password);
232
- configuration = configurations. deployerJars
233
- repository(url : milestoneRepositoryUrl) {
234
- authentication(credentials)
235
- }
236
- snapshotRepository(url : snapshotRepositoryUrl) {
237
- authentication(credentials)
238
- }
239
- break ;
230
+ beforeDeployment { MavenDeployment deployment ->
231
+ signing. signPom(deployment)
240
232
}
241
233
242
- beforeDeployment { deployment ->
243
- [" sources" , " javadoc" ]. each { type ->
244
- deployment. addArtifact configurations. meta. artifacts. find { it. classifier == type }
245
- }
234
+ repository(url : " https://oss.sonatype.org/service/local/staging/deploy/maven2/" ) {
235
+ authentication(userName : project. hasProperty(" sonatypeUsername" ) ? project. sonatypeUsername : null ,
236
+ password : project. hasProperty(" sonatypePassword" ) ? project. sonatypePassword : null )
237
+ }
238
+ snapshotRepository(url : " http://repo.grails.org/grails/libs-snapshots-local" ) {
239
+ authentication(userName : project. hasProperty(" artifactoryPublishUsername" ) ? project. artifactoryPublishUsername : null ,
240
+ password : project. hasProperty(" artifactoryPublishPassword" ) ? project. artifactoryPublishPassword : null )
246
241
}
242
+
247
243
pom. project {
244
+ name ' Grails GORM'
245
+ packaging ' jar'
246
+ description ' GORM - Grails Data Access Framework'
247
+ delegate. url ' http://grails.org/'
248
+
248
249
licenses {
249
250
license {
250
251
name ' The Apache Software License, Version 2.0'
251
252
url ' http://www.apache.org/licenses/LICENSE-2.0.txt'
252
253
distribution ' repo'
253
254
}
254
255
}
256
+
257
+ scm {
258
+ delegate
. url
' scm:[email protected] :SpringSource/grails-data-mapping.git'
259
+ connection
' scm:[email protected] :SpringSource/grails-data-mapping.git'
260
+ developerConnection
' scm:[email protected] :SpringSource/grails-data-mapping.git'
261
+ }
262
+
263
+ licenses {
264
+ license {
265
+ name ' The Apache Software License, Version 2.0'
266
+ delegate. url ' http://www.apache.org/licenses/LICENSE-2.0.txt'
267
+ distribution ' repo'
268
+ }
269
+ }
270
+
271
+ developers {
272
+ developer {
273
+ id ' graemerocher'
274
+ name ' Graeme Rocher'
275
+ }
276
+ developer {
277
+ id ' jeffscottbrown'
278
+ name ' Jeff Brown'
279
+ }
280
+ developer {
281
+ id ' burtbeckwith'
282
+ name ' Burt Beckwith'
283
+ }
284
+ }
255
285
}
256
286
}
257
287
}
258
- uploadArchives. dependsOn sourcesJar, javadocJar
259
288
}
260
289
}
261
290
0 commit comments