File tree Expand file tree Collapse file tree 5 files changed +33
-12
lines changed
audit-test-allow-update-outside-transaction Expand file tree Collapse file tree 5 files changed +33
-12
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"
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.2 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -15,9 +15,8 @@ apply plugin: 'org.apache.grails.gradle.grails-gsp'
1515compileJava. options. release = 17
1616
1717dependencies {
18- implementation platform(" org.apache.grails:grails-bom:$grailsVersion " )
18+ compileOnly platform(" org.apache.grails:grails-bom:$grailsVersion " )
1919
20- profile " org.apache.grails.profiles:web-plugin"
2120 compileOnly ' org.springframework.boot:spring-boot-starter-logging'
2221 compileOnly " org.springframework.boot:spring-boot-starter-actuator"
2322 compileOnly " org.springframework.boot:spring-boot-autoconfigure"
You can’t perform that action at this time.
0 commit comments