-
Notifications
You must be signed in to change notification settings - Fork 71
/
build.gradle
339 lines (284 loc) · 12 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
buildscript {
repositories {
maven { url "https://repo.grails.org/grails/core" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "io.github.gradle-nexus:publish-plugin:$gradleNexusPublishPluginVersion"
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion"
classpath "org.grails.plugins:views-gradle:$viewsGradleVersion"
classpath "org.asciidoctor:asciidoctor-gradle-jvm:$asciidoctorGradleVersion"
classpath "com.github.erdi:webdriver-binaries-gradle-plugin:$webdriverBinariesPluginVersion"
}
}
group "org.grails"
version project.projectVersion
logger.info("GORM VERSION = ${project.gormVersion}")
ext {
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
isCiBuild = project.hasProperty("isCiBuild") || System.getenv().get("CI") as Boolean
isBuildSnapshot = version.endsWith('-SNAPSHOT')
isReleaseVersion = !isBuildSnapshot
nexusUsername = System.getenv("SONATYPE_USERNAME") ?: project.hasProperty("sonatypeOssUsername") ? project.sonatypeOssUsername : ''
nexusPassword = System.getenv("SONATYPE_PASSWORD") ?: project.hasProperty("sonatypeOssPassword") ? project.sonatypeOssPassword : ''
isSnapshot = project.projectVersion.endsWith("-SNAPSHOT")
groovyVersion = System.getenv('CI_GROOVY_VERSION') ?: project.groovyVersion
}
ext."signing.keyId" = System.getenv("SIGNING_KEY") ?: project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : null
ext."signing.password" = System.getenv("SIGNING_PASSPHRASE") ?: project.hasProperty("signing.password") ? project.getProperty('signing.password') : null
ext."signing.secretKeyRingFile" = project.hasProperty("signing.secretKeyRingFile") ? project.getProperty('signing.secretKeyRingFile') : null
ext['junit-jupiter.version'] = junitJupiterVersion
if (isReleaseVersion) {
apply plugin: 'maven-publish'
apply plugin: "io.github.gradle-nexus.publish-plugin"
nexusPublishing {
repositories {
sonatype {
def ossUser = System.getenv("SONATYPE_USERNAME") ?: project.hasProperty("sonatypeOssUsername") ? project.sonatypeOssUsername : ''
def ossPass = System.getenv("SONATYPE_PASSWORD") ?: project.hasProperty("sonatypeOssPassword") ? project.sonatypeOssPassword : ''
def ossStagingProfileId = System.getenv("SONATYPE_STAGING_PROFILE_ID") ?: project.hasProperty("sonatypeOssStagingProfileId") ? project.sonatypeOssStagingProfileId : ''
nexusUrl = uri("https://s01.oss.sonatype.org/service/local/")
username = ossUser
password = ossPass
stagingProfileId = ossStagingProfileId
}
}
}
}
allprojects {
ext.groovyVersion = System.getenv('CI_GROOVY_VERSION') ?: project.groovyVersion
repositories {
mavenCentral()
maven { url = 'https://repo.grails.org/grails/core' }
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
// mavenLocal() // Keep, this will be uncommented and used by CI (groovy-joint-workflow)
if(isSnapshot) {
maven { url = 'https://repo.grails.org/grails/libs-snapshots-local' }
}
if(groovyVersion && groovyVersion.endsWith('-SNAPSHOT')) {
maven {
name = 'ASF Snapshot repo'
url = 'https://repository.apache.org/content/repositories/snapshots'
}
}
}
}
subprojects { Project subproject ->
ext {
isExample = subproject.name.startsWith('example')
isPluginProject = subproject.name.endsWith("-plugin") && (subproject.name.startsWith("grails") || subproject.name.startsWith("rx-"))
isGrails3PluginProject = subproject.name.endsWith("-plugin")
}
if(isExample) {
apply plugin: "groovy"
ext['gorm.version'] = gormVersion
if(subproject.name.startsWith("examples-grails")) {
if (subproject.name != "examples-grails-data-service") {
apply plugin:"org.grails.grails-web"
apply plugin:"org.grails.grails-gsp"
apply plugin:"com.github.erdi.webdriver-binaries"
}
}
dependencies {
implementation platform("org.grails:grails-bom:$grailsVersion")
testImplementation "jakarta.annotation:jakarta.annotation-api"
testImplementation "io.micrometer:micrometer-core:latest.integration"
testImplementation "io.projectreactor:reactor-test"
testImplementation "org.apache.groovy:groovy-test-junit5"
testImplementation "org.spockframework:spock-core"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.platform:junit-platform-runner"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
}
apply from: "${rootProject.projectDir}/gradle/testVerbose.gradle"
tasks.withType(Jar) {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
return
}
ext {
projectInfo = new PublishingConvention(project)
pomInfo = {
delegate.name projectInfo.projectName
delegate.description projectInfo.projectDescription
delegate.url projectInfo.projectURL
delegate.licenses {
delegate.license {
delegate.name 'The Apache Software License, Version 2.0'
delegate.url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
delegate.distribution 'repo'
}
}
delegate.scm {
delegate.url projectInfo.projectVcsUrl
delegate.connection projectInfo.projectVcsUrl
delegate.developerConnection projectInfo.projectVcsUrl
}
delegate.developers {
delegate.developer {
delegate.id 'graemerocher'
delegate.name 'Graeme Rocher'
}
delegate.developer {
delegate.id 'jeffscottbrown'
delegate.name 'Jeff Brown'
}
delegate.developer {
delegate.id 'burtbeckwith'
delegate.name 'Burt Beckwith'
}
delegate.developer {
delegate.id 'puneetbehl'
delegate.name 'Puneet Behl'
}
}
}
}
apply plugin: 'groovy'
dependencies {
implementation platform("org.grails:grails-bom:$grailsVersion")
}
configurations {
documentation.extendsFrom(compileClasspath)
}
if(isPluginProject) {
group "org.grails.plugins"
version project.rootProject.version
}
else {
group "org.grails"
version project.rootProject.version
}
if(subproject.name == 'docs') {
return
}
if(isGrails3PluginProject) {
apply plugin: "org.grails.grails-plugin"
}
else {
apply plugin:"groovy"
}
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'signing'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
withJavadocJar()
withSourcesJar()
}
dependencies {
documentation platform("org.grails:grails-bom:$grailsVersion")
documentation "org.fusesource.jansi:jansi"
documentation "org.apache.groovy:groovy-dateutil"
documentation "info.picocli:picocli:$picocliVersion"
documentation "com.github.javaparser:javaparser-core"
implementation "org.apache.groovy:groovy"
testImplementation "org.apache.groovy:groovy-test-junit5"
testImplementation "org.spockframework:spock-core"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.platform:junit-platform-runner"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
}
apply from: "${rootProject.projectDir}/gradle/testVerbose.gradle"
tasks.withType(Test) {
configure {
retry {
maxRetries = 2
maxFailures = 20
failOnPassedAfterRetry = true
filter {
excludeClasses.add("*GroovyChangeLogSpec")
}
}
}
}
groovydoc.classpath = configurations.documentation
publishing {
if (isBuildSnapshot) {
repositories {
maven {
credentials {
def u = System.getenv("ARTIFACTORY_USERNAME") ?: project.hasProperty("artifactoryPublishUsername") ? project.artifactoryPublishUsername : ''
def p = System.getenv("ARTIFACTORY_PASSWORD") ?: project.hasProperty("artifactoryPublishPassword") ? project.artifactoryPublishPassword : ''
username = u
password = p
}
if(isGrails3PluginProject) {
url "https://repo.grails.org/grails/plugins3-snapshots-local"
} else {
url "https://repo.grails.org/grails/libs-snapshots-local"
}
}
}
}
publications {
maven(MavenPublication) {
pom {
name = projectInfo.projectName
description = projectInfo.projectDescription
url = projectInfo.projectURL
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
scm {
url = 'scm:[email protected]:grails/gorm-hibernate5.git'
connection = 'scm:[email protected]:grails/gorm-hibernate5.git'
developerConnection = 'scm:[email protected]:grails/gorm-hibernate5.git'
}
developers {
developer {
id = 'puneetbehl'
name = 'Puneet Behl'
email = '[email protected]'
}
}
}
artifactId projectInfo.projectArtifactId
from components.java
afterEvaluate {
if(isGrails3PluginProject) {
artifact source:"${sourceSets.main.groovy.getClassesDirectory().get().getAsFile()}/META-INF/grails-plugin.xml",
classifier:"plugin",
extension:'xml'
}
}
}
}
}
afterEvaluate {
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("publish") }
sign publishing.publications.maven
}
}
tasks.withType(Sign) {
onlyIf { isReleaseVersion }
}
//do not generate extra load on Nexus with new staging repository if signing fails
tasks.withType(io.github.gradlenexus.publishplugin.InitializeNexusStagingRepository).configureEach {
shouldRunAfter(tasks.withType(Sign))
}
}
class PublishingConvention {
Project project
String projectArtifactId
String projectName = 'GORM for Hibernate 5'
String projectDescription = 'Provides a GORM Object Mapping implementations for Hibernate 5'
String projectURL = 'https://gorm.grails.org/latest/hibernate'
String projectIssueTrackerUrl = 'https://github.com/grails/gorm-hibernate5/issues'
String projectVcsUrl = 'https://github.com/grails/gorm-hibernate5'
PublishingConvention(Project project) {
this.project = project
def name = project.name
if(name.startsWith('grails') && name.endsWith('-plugin')) {
name = 'hibernate5'
}
projectArtifactId = name
}
}