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 1
1
buildscript {
2
2
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' }
5
16
}
6
17
dependencies {
7
18
classpath platform(" org.apache.grails:grails-bom:$grailsVersion " )
8
19
classpath " org.apache.grails:grails-gradle-plugins"
9
- classpath " com.bertramlabs.plugins :asset-pipeline-gradle"
20
+ classpath " cloud.wondrify :asset-pipeline-gradle"
10
21
}
11
22
}
12
23
13
24
allprojects {
14
25
repositories {
15
26
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' }
18
40
// mavenLocal() // for local testing, do not commit uncommented
19
41
}
20
42
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ apply plugin: 'eclipse'
6
6
apply plugin : ' idea'
7
7
apply plugin : ' org.apache.grails.gradle.grails-web'
8
8
apply plugin : ' org.apache.grails.gradle.grails-gsp'
9
- apply plugin : ' asset-pipeline'
9
+ apply plugin : ' cloud.wondrify. asset-pipeline'
10
10
11
11
assets {
12
12
minifyJs = true
@@ -51,7 +51,7 @@ dependencies {
51
51
implementation " org.springframework.boot:spring-boot-starter-tomcat"
52
52
implementation " org.springframework.boot:spring-boot-starter-validation"
53
53
console " org.apache.grails:grails-console"
54
- runtimeOnly " com.bertramlabs.plugins :asset-pipeline-grails"
54
+ runtimeOnly " cloud.wondrify :asset-pipeline-grails"
55
55
runtimeOnly " com.h2database:h2"
56
56
runtimeOnly " org.apache.tomcat:tomcat-jdbc"
57
57
runtimeOnly " org.fusesource.jansi:jansi"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ apply plugin: 'eclipse'
6
6
apply plugin : ' idea'
7
7
apply plugin : ' org.apache.grails.gradle.grails-web'
8
8
apply plugin : ' org.apache.grails.gradle.grails-gsp'
9
- apply plugin : ' asset-pipeline'
9
+ apply plugin : ' cloud.wondrify. asset-pipeline'
10
10
11
11
assets {
12
12
minifyJs = true
@@ -53,7 +53,7 @@ dependencies {
53
53
implementation " org.springframework.boot:spring-boot-starter-tomcat"
54
54
implementation " org.springframework.boot:spring-boot-starter-validation"
55
55
console " org.apache.grails:grails-console"
56
- runtimeOnly " com.bertramlabs.plugins :asset-pipeline-grails"
56
+ runtimeOnly " cloud.wondrify :asset-pipeline-grails"
57
57
runtimeOnly " com.h2database:h2"
58
58
runtimeOnly " org.apache.tomcat:tomcat-jdbc"
59
59
runtimeOnly " org.fusesource.jansi:jansi"
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =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
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =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'
15
15
compileJava. options. release = 17
16
16
17
17
dependencies {
18
- implementation platform(" org.apache.grails:grails-bom:$grailsVersion " )
18
+ compileOnly platform(" org.apache.grails:grails-bom:$grailsVersion " )
19
19
20
- profile " org.apache.grails.profiles:web-plugin"
21
20
compileOnly ' org.springframework.boot:spring-boot-starter-logging'
22
21
compileOnly " org.springframework.boot:spring-boot-starter-actuator"
23
22
compileOnly " org.springframework.boot:spring-boot-autoconfigure"
You can’t perform that action at this time.
0 commit comments