We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8da9c2b + d8b8a73 commit 0f83030Copy full SHA for 0f83030
gradle/publish-config.gradle
@@ -40,6 +40,15 @@ extensions.configure(GrailsPublishExtension) {
40
url = 'https://apache.org/'
41
}
42
it.developers = project.property('pomDevelopers') as Map<String, String>
43
+ it.pomCustomization = { xml ->
44
+ xml.asNode().dependencies?.dependency?.findAll {
45
+ it.groupId.text() == 'org.ehcache' && it.artifactId.text() == 'ehcache'
46
+ }?.each {
47
+ if (!it.classifier) {
48
+ it.appendNode('classifier', 'jakarta')
49
+ }
50
51
52
53
54
afterEvaluate {
0 commit comments