Skip to content

Commit f2168ab

Browse files
authored
Merge pull request #1137 from apache/wondrify-groupid
Update asset-pipeline to cloud.wondrify groupid
2 parents 3b1758e + 0992b4b commit f2168ab

19 files changed

Lines changed: 46 additions & 35 deletions

File tree

.sdkmanrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
java=17.0.15-librca
2-
gradle=8.14
2+
gradle=8.14.2

build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,19 @@ allprojects {
3939
maven {
4040
url = 'https://repository.apache.org/content/groups/snapshots'
4141
content {
42-
includeVersionByRegex 'org[.]apache[.]((grails)|(groovy)).*', '.*','.*SNAPSHOT'
42+
includeVersionByRegex('org[.]apache[.]((grails)|(groovy)).*', '.*','.*SNAPSHOT')
4343
}
4444
}
4545
maven {
4646
url = 'https://repository.apache.org/content/groups/staging'
4747
content {
48-
includeGroupByRegex 'org[.]apache[.]grails.*'
48+
includeGroupByRegex('org[.]apache[.]grails.*')
49+
}
50+
}
51+
maven {
52+
url = 'https://central.sonatype.com/repository/maven-snapshots'
53+
content {
54+
includeVersionByRegex('cloud[.]wondrify', '.*', '.*-SNAPSHOT')
4955
}
5056
}
5157
}

buildSrc/build.gradle

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,27 @@ repositories {
3232
maven {
3333
url = 'https://repository.apache.org/content/groups/snapshots'
3434
content {
35-
includeVersionByRegex 'org[.]apache[.]((grails)|(groovy)).*', '.*','.*SNAPSHOT'
35+
includeVersionByRegex('org[.]apache[.]((grails)|(groovy)).*', '.*','.*SNAPSHOT')
3636
}
3737
}
3838
maven {
3939
url = 'https://repository.apache.org/content/groups/staging'
4040
content {
41-
includeGroupByRegex 'org[.]apache[.]grails.*'
41+
includeGroupByRegex('org[.]apache[.]grails.*')
42+
}
43+
}
44+
maven {
45+
url = 'https://central.sonatype.com/repository/maven-snapshots'
46+
content {
47+
includeVersionByRegex('cloud[.]wondrify', '.*', '.*-SNAPSHOT')
4248
}
4349
}
4450
}
4551

4652
dependencies {
4753
implementation platform("org.apache.grails:grails-gradle-bom:${versions.get('grailsVersion')}")
4854
implementation "org.asciidoctor:asciidoctor-gradle-jvm:${versions.get('asciidoctorGradlePluginVersion')}"
49-
implementation 'com.bertramlabs.plugins:asset-pipeline-gradle'
55+
implementation 'cloud.wondrify:asset-pipeline-gradle'
5056
implementation 'org.apache.grails:grails-gradle-plugins'
5157
implementation "org.nosphere.apache.rat:org.nosphere.apache.rat.gradle.plugin:${versions.get('ratVersion')}"
5258
implementation "org.gradle.crypto.checksum:org.gradle.crypto.checksum.gradle.plugin:${versions.get('gradleCryptoChecksumVersion')}"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919
projectVersion=7.0.0-SNAPSHOT
20-
grailsVersion=7.0.0-M4
20+
grailsVersion=7.0.0-SNAPSHOT
2121
javaVersion=17
2222

2323
# TODO: This is a work around since the bom does not support exclusions and spring forces groovy version 4.0.26

gradle/examples-config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tasks.withType(Groovydoc).configureEach {
2121
enabled = false
2222
}
2323

24-
// Workaround for parallel builds due to https://github.com/bertramdev/asset-pipeline/issues/177
24+
// Workaround for parallel builds due to https://github.com/wondrify/asset-pipeline/issues/177
2525
if ('assetCompile' in tasks.names) {
2626
tasks.named('assetCompile') {
2727
outputs.dir(rootProject.layout.buildDirectory.dir('asset-serialize'))

gradle/wrapper/gradle-wrapper.jar

181 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugin-cas/examples/spring-security-cas-test1/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
plugins {
2121
id 'org.apache.grails.gradle.grails-web'
22-
id 'com.bertramlabs.asset-pipeline'
22+
id 'cloud.wondrify.asset-pipeline'
2323
}
2424

2525
group = 'spring.security.cas'
@@ -37,7 +37,7 @@ dependencies {
3737
implementation 'org.webjars:bootstrap:3.3.6'
3838
implementation 'org.webjars:jquery:2.2.0'
3939

40-
runtimeOnly 'com.bertramlabs.plugins:asset-pipeline-grails'
40+
runtimeOnly 'cloud.wondrify:asset-pipeline-grails'
4141
runtimeOnly 'com.h2database:h2'
4242
runtimeOnly 'com.zaxxer:HikariCP'
4343
runtimeOnly 'org.apache.grails:grails-databinding'

0 commit comments

Comments
 (0)