File tree Expand file tree Collapse file tree 3 files changed +31
-9
lines changed
audit-test-allow-update-outside-transaction Expand file tree Collapse file tree 3 files changed +31
-9
lines changed Original file line number Diff line number Diff line change 11buildscript {
22 repositories {
3- maven { url = " https://repository.apache.org/content/groups/snapshots/" }
4- maven { url = " https://repo.grails.org/grails/core" }
3+ maven {
4+ url = ' https://repository.apache.org/content/groups/snapshots'
5+ content {
6+ includeVersionByRegex ' org[.]apache[.]((grails)|(groovy)).*' , ' .*' , ' .*-SNAPSHOT'
7+ }
8+ }
9+ maven {
10+ url = ' https://central.sonatype.com/repository/maven-snapshots'
11+ content {
12+ includeVersionByRegex ' cloud[.]wondrify' , ' .*' , ' .*-SNAPSHOT'
13+ }
14+ }
15+ maven { url = ' https://repo.grails.org/grails/restricted' }
516 }
617 dependencies {
718 classpath platform(" org.apache.grails:grails-bom:$grailsVersion " )
819 classpath " org.apache.grails:grails-gradle-plugins"
9- classpath " com.bertramlabs.plugins :asset-pipeline-gradle"
20+ classpath " cloud.wondrify :asset-pipeline-gradle"
1021 }
1122}
1223
1324allprojects {
1425 repositories {
1526 mavenCentral()
16- maven { url = " https://repository.apache.org/content/groups/snapshots/" }
17- maven { url = ' https://repo.grails.org/grails/core' }
27+ maven {
28+ url = ' https://repository.apache.org/content/groups/snapshots'
29+ content {
30+ includeVersionByRegex ' org[.]apache[.]((grails)|(groovy)).*' , ' .*' , ' .*-SNAPSHOT'
31+ }
32+ }
33+ maven {
34+ url = ' https://central.sonatype.com/repository/maven-snapshots'
35+ content {
36+ includeVersionByRegex ' cloud[.]wondrify' , ' .*' , ' .*-SNAPSHOT'
37+ }
38+ }
39+ maven { url = ' https://repo.grails.org/grails/restricted' }
1840// mavenLocal() // for local testing, do not commit uncommented
1941 }
2042}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ apply plugin: 'eclipse'
66apply plugin : ' idea'
77apply plugin : ' org.apache.grails.gradle.grails-web'
88apply plugin : ' org.apache.grails.gradle.grails-gsp'
9- apply plugin : ' asset-pipeline'
9+ apply plugin : ' cloud.wondrify. asset-pipeline'
1010
1111assets {
1212 minifyJs = true
@@ -51,7 +51,7 @@ dependencies {
5151 implementation " org.springframework.boot:spring-boot-starter-tomcat"
5252 implementation " org.springframework.boot:spring-boot-starter-validation"
5353 console " org.apache.grails:grails-console"
54- runtimeOnly " com.bertramlabs.plugins :asset-pipeline-grails"
54+ runtimeOnly " cloud.wondrify :asset-pipeline-grails"
5555 runtimeOnly " com.h2database:h2"
5656 runtimeOnly " org.apache.tomcat:tomcat-jdbc"
5757 runtimeOnly " org.fusesource.jansi:jansi"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ apply plugin: 'eclipse'
66apply plugin : ' idea'
77apply plugin : ' org.apache.grails.gradle.grails-web'
88apply plugin : ' org.apache.grails.gradle.grails-gsp'
9- apply plugin : ' asset-pipeline'
9+ apply plugin : ' cloud.wondrify. asset-pipeline'
1010
1111assets {
1212 minifyJs = true
@@ -53,7 +53,7 @@ dependencies {
5353 implementation " org.springframework.boot:spring-boot-starter-tomcat"
5454 implementation " org.springframework.boot:spring-boot-starter-validation"
5555 console " org.apache.grails:grails-console"
56- runtimeOnly " com.bertramlabs.plugins :asset-pipeline-grails"
56+ runtimeOnly " cloud.wondrify :asset-pipeline-grails"
5757 runtimeOnly " com.h2database:h2"
5858 runtimeOnly " org.apache.tomcat:tomcat-jdbc"
5959 runtimeOnly " org.fusesource.jansi:jansi"
You can’t perform that action at this time.
0 commit comments