Skip to content

Commit a8164b4

Browse files
committed
Update asset-pipeline to cloud.wondrify groupid
1 parent 37be326 commit a8164b4

File tree

13 files changed

+33
-21
lines changed

13 files changed

+33
-21
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ allprojects {
4848
includeGroupByRegex 'org[.]apache[.]grails.*'
4949
}
5050
}
51+
maven {
52+
url = 'https://central.sonatype.com/repository/maven-snapshots'
53+
content {
54+
includeVersionByRegex 'cloud[.]wondrify', '.*', '.*-SNAPSHOT'
55+
}
56+
}
5157
}
5258

5359
configurations.configureEach {

buildSrc/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,18 @@ repositories {
4141
includeGroupByRegex 'org[.]apache[.]grails.*'
4242
}
4343
}
44+
maven {
45+
url = 'https://central.sonatype.com/repository/maven-snapshots'
46+
content {
47+
includeVersionByRegex 'cloud[.]wondrify', '.*', '.*-SNAPSHOT'
48+
}
49+
}
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/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'))

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'

plugin-core/examples/functional-test-app/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 = 'examples.test'
@@ -32,7 +32,7 @@ dependencies {
3232
implementation 'org.apache.grails:grails-gsp'
3333
implementation 'org.apache.grails:grails-rest-transforms'
3434

35-
runtimeOnly 'com.bertramlabs.plugins:asset-pipeline-grails'
35+
runtimeOnly 'cloud.wondrify:asset-pipeline-grails'
3636
runtimeOnly 'com.h2database:h2'
3737
runtimeOnly 'com.zaxxer:HikariCP'
3838
runtimeOnly 'org.apache.grails:grails-data-hibernate5'

plugin-ldap/examples/custom-user-details-context-mapper/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 = 'misc.functional.test.app'
@@ -40,7 +40,7 @@ dependencies {
4040
// to not depend on an external ldap server
4141
implementation "com.unboundid:unboundid-ldapsdk:$unboundidLdapSdk"
4242

43-
runtimeOnly 'com.bertramlabs.plugins:asset-pipeline-grails'
43+
runtimeOnly 'cloud.wondrify:asset-pipeline-grails'
4444
runtimeOnly 'com.h2database:h2'
4545
runtimeOnly 'com.zaxxer:HikariCP'
4646
runtimeOnly 'org.fusesource.jansi:jansi'

plugin-ldap/examples/functional-test-app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import asset.pipeline.gradle.AssetPipelineExtension
2121

2222
plugins {
2323
id 'org.apache.grails.gradle.grails-web'
24-
id 'com.bertramlabs.asset-pipeline'
24+
id 'cloud.wondrify.asset-pipeline'
2525
}
2626

2727
group = 'com.test'
@@ -41,7 +41,7 @@ dependencies {
4141
implementation 'org.webjars:bootstrap:4.1.3'
4242
implementation 'org.webjars:jquery:3.3.1'
4343

44-
runtimeOnly 'com.bertramlabs.plugins:asset-pipeline-grails'
44+
runtimeOnly 'cloud.wondrify:asset-pipeline-grails'
4545
runtimeOnly 'com.h2database:h2'
4646
runtimeOnly 'com.zaxxer:HikariCP'
4747
runtimeOnly 'org.fusesource.jansi:jansi'

plugin-ldap/examples/retrieve-db-roles/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 = 'misc.functional.test.app'
@@ -37,7 +37,7 @@ dependencies {
3737
implementation 'org.webjars:bootstrap:4.1.3'
3838
implementation 'org.webjars:jquery:3.3.1'
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.fusesource.jansi:jansi'

plugin-ldap/examples/retrieve-group-roles/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 = 'misc.functional.test.app'
@@ -39,7 +39,7 @@ dependencies {
3939
// to not depend on an external ldap server
4040
implementation "com.unboundid:unboundid-ldapsdk:$unboundidLdapSdk"
4141

42-
runtimeOnly 'com.bertramlabs.plugins:asset-pipeline-grails'
42+
runtimeOnly 'cloud.wondrify:asset-pipeline-grails'
4343
runtimeOnly 'com.h2database:h2'
4444
runtimeOnly 'com.zaxxer:HikariCP'
4545
runtimeOnly 'org.fusesource.jansi:jansi'

plugin-ui/docs/src/docs/customization.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The role name required to be able to run as another user defaults to `ROLE_SWITC
166166

167167
=== CSS and JavaScript
168168

169-
The plugin uses the https://github.com/bertramdev/asset-pipeline[Asset Pipeline] plugin to manage its resources. This makes it very easy to provide your own version of some or all of the static resources since asset-pipeline will always use a file in the application's `assets` directory instead of a plugin's if it exists.
169+
The plugin uses the https://github.com/wondrify/asset-pipeline[Asset Pipeline] plugin to manage its resources. This makes it very easy to provide your own version of some or all of the static resources since asset-pipeline will always use a file in the application's `assets` directory instead of a plugin's if it exists.
170170

171171
Instead of depending on either the jQuery or jQuery UI plugins, this plugin includes its own copy of jquery.js, jquery-ui.js, and jquery-ui.css. Note that the versions are not hard-coded, but instead they take advantage of the feature in asset-pipeline where you can embed Groovy code in a file to specify the name and path.
172172

0 commit comments

Comments
 (0)