File tree Expand file tree Collapse file tree 4 files changed +7
-10
lines changed
java/org/grails/forge/feature/assetPipeline
test/groovy/org/grails/forge/feature/database Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 31
31
env :
32
32
DEVELOCITY_BUILD_CACHE_NODE_USER : ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }}
33
33
DEVELOCITY_BUILD_CACHE_NODE_KEY : ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }}
34
- run : ./gradlew build
34
+ run : ./gradlew build --refresh-dependencies
35
35
- name : " ✅ Verify CLI"
36
36
if : success()
37
37
run : |
Original file line number Diff line number Diff line change @@ -74,19 +74,16 @@ public void apply(GeneratorContext generatorContext) {
74
74
generatorContext .addDependency (Dependency .builder ()
75
75
.groupId ("org.webjars.npm" )
76
76
.artifactId ("bootstrap" )
77
- .version ("5.3.3" )
78
77
.developmentOnly ());
79
78
80
79
generatorContext .addDependency (Dependency .builder ()
81
80
.groupId ("org.webjars.npm" )
82
81
.artifactId ("bootstrap-icons" )
83
- .version ("1.11.3" )
84
82
.developmentOnly ());
85
83
86
84
generatorContext .addDependency (Dependency .builder ()
87
85
.groupId ("org.webjars.npm" )
88
86
.artifactId ("jquery" )
89
- .version ("3.7.1" )
90
87
.developmentOnly ());
91
88
92
89
final ClassLoader classLoader = Thread .currentThread ().getContextClassLoader ();
Original file line number Diff line number Diff line change 20
20
<dependency >
21
21
<groupId >org.grails.plugins</groupId >
22
22
<artifactId >hibernate5</artifactId >
23
- <version >9.0.0-M2 </version >
23
+ <version >9.0.0-SNAPSHOT </version >
24
24
</dependency >
25
25
<dependency >
26
26
<groupId >org.grails.plugins</groupId >
27
27
<artifactId >cache</artifactId >
28
- <version >8.0.0-M2 </version >
28
+ <version >8.0.0-SNAPSHOT </version >
29
29
</dependency >
30
30
<dependency >
31
31
<groupId >org.grails.plugins</groupId >
35
35
<dependency >
36
36
<groupId >org.grails.plugins</groupId >
37
37
<artifactId >database-migration</artifactId >
38
- <version >6.0.0-M1 </version >
38
+ <version >6.0.0-SNAPSHOT </version >
39
39
</dependency >
40
40
<dependency >
41
41
<groupId >org.grails.plugins</groupId >
60
60
<dependency >
61
61
<groupId >org.grails.plugins</groupId >
62
62
<artifactId >views-gradle</artifactId >
63
- <version >4.0.0-M1 </version >
63
+ <version >4.0.0-SNAPSHOT </version >
64
64
</dependency >
65
65
<dependency >
66
66
<groupId >org.grails.plugins</groupId >
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class HibernateGormSpec extends ApplicationContextSpec implements CommandOutputF
41
41
.renderBuildSrc()
42
42
43
43
then :
44
- template. contains(' implementation "org.grails.plugins:hibernate5:9.0.0-M2 "' )
44
+ template. contains(' implementation "org.grails.plugins:hibernate5:9.0.0-SNAPSHOT "' )
45
45
}
46
46
47
47
void " test buildSrc is present for buildscript dependencies" () {
@@ -51,7 +51,7 @@ class HibernateGormSpec extends ApplicationContextSpec implements CommandOutputF
51
51
52
52
expect :
53
53
buildGradle != null
54
- buildGradle. contains(" classpath \" org.grails.plugins:hibernate5:9.0.0-M2 \" " )
54
+ buildGradle. contains(" classpath \" org.grails.plugins:hibernate5:9.0.0-SNAPSHOT \" " )
55
55
56
56
}
57
57
You can’t perform that action at this time.
0 commit comments