File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
test/groovy/org/grails/forge/feature/grails Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ micronautDocsVersion=2.0.0
4
4
micronautVersion =3.10.4
5
5
rockerVersion =1.4.0
6
6
groovyVersion =3.0.22
7
- grailsVersion =7.0.0-M1
8
7
spockVersion =2.0-groovy-3.0
9
8
title =Grails Application Forge
10
9
projectDesc =Generates Grails applications
11
10
projectUrl =https://grails.org
12
11
githubSlug =grails/grails-forge
13
12
githubBranch =7.0.x
14
13
developers =Puneet Behl
14
+ grailsVersion =7.0.0-SNAPSHOT
15
15
org.gradle.parallel =true
16
16
org.gradle.caching =true
Original file line number Diff line number Diff line change 15
15
<dependency >
16
16
<groupId >org.grails</groupId >
17
17
<artifactId >grails-gradle-plugin</artifactId >
18
- <version >7.0.0-M3 </version >
18
+ <version >7.0.0-SNAPSHOT </version >
19
19
</dependency >
20
20
<dependency >
21
21
<groupId >org.grails.plugins</groupId >
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ class GrailsGradlePluginSpec extends BeanContextSpec implements CommandOutputFix
16
16
final String gradleProps = output[" gradle.properties" ]
17
17
18
18
then :
19
- gradleProps. contains(" grailsGradlePluginVersion=7.0.0-M3 " )
20
- gradleProps. contains(" grailsVersion=7.0.0-M1 " )
19
+ gradleProps. contains(" grailsGradlePluginVersion=7.0.0-SNAPSHOT " )
20
+ gradleProps. contains(" grailsVersion=7.0.0-SNAPSHOT " )
21
21
}
22
22
23
23
void " test dependencies are present for buildSrc" () {
@@ -26,7 +26,7 @@ class GrailsGradlePluginSpec extends BeanContextSpec implements CommandOutputFix
26
26
.renderBuildSrc()
27
27
28
28
then :
29
- template. contains(' implementation "org.grails:grails-gradle-plugin:7.0.0-M3 "' )
29
+ template. contains(' implementation "org.grails:grails-gradle-plugin:7.0.0-SNAPSHOT "' )
30
30
}
31
31
32
32
void " test buildSrc is present for buildscript dependencies" () {
@@ -36,7 +36,7 @@ class GrailsGradlePluginSpec extends BeanContextSpec implements CommandOutputFix
36
36
37
37
expect :
38
38
buildGradle != null
39
- buildGradle. contains(" classpath \" org.grails:grails-gradle-plugin:7.0.0-M3 \" " )
39
+ buildGradle. contains(" classpath \" org.grails:grails-gradle-plugin:7.0.0-SNAPSHOT \" " )
40
40
41
41
}
42
42
You can’t perform that action at this time.
0 commit comments