Skip to content

Commit

Permalink
Merge pull request #480 from grails/back-to-7.0.0-snapshot
Browse files Browse the repository at this point in the history
back to 7.0.0-SNAPSHOT versions of grails-core and grails-gradle-plugin
  • Loading branch information
jamesfredley authored Dec 24, 2024
2 parents 536e26e + 522fb3d commit ca7777a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ micronautDocsVersion=2.0.0
micronautVersion=3.10.4
rockerVersion=1.4.0
groovyVersion=3.0.22
grailsVersion=7.0.0-M1
spockVersion=2.0-groovy-3.0
title=Grails Application Forge
projectDesc=Generates Grails applications
projectUrl=https://grails.org
githubSlug=grails/grails-forge
githubBranch=7.0.x
developers=Puneet Behl
grailsVersion=7.0.0-SNAPSHOT
org.gradle.parallel=true
org.gradle.caching=true
2 changes: 1 addition & 1 deletion grails-forge-core/src/main/resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-gradle-plugin</artifactId>
<version>7.0.0-M3</version>
<version>7.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.grails.plugins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class GrailsGradlePluginSpec extends BeanContextSpec implements CommandOutputFix
final String gradleProps = output["gradle.properties"]

then:
gradleProps.contains("grailsGradlePluginVersion=7.0.0-M3")
gradleProps.contains("grailsVersion=7.0.0-M1")
gradleProps.contains("grailsGradlePluginVersion=7.0.0-SNAPSHOT")
gradleProps.contains("grailsVersion=7.0.0-SNAPSHOT")
}

void "test dependencies are present for buildSrc"() {
Expand All @@ -26,7 +26,7 @@ class GrailsGradlePluginSpec extends BeanContextSpec implements CommandOutputFix
.renderBuildSrc()

then:
template.contains('implementation "org.grails:grails-gradle-plugin:7.0.0-M3"')
template.contains('implementation "org.grails:grails-gradle-plugin:7.0.0-SNAPSHOT"')
}

void "test buildSrc is present for buildscript dependencies"() {
Expand All @@ -36,7 +36,7 @@ class GrailsGradlePluginSpec extends BeanContextSpec implements CommandOutputFix

expect:
buildGradle != null
buildGradle.contains("classpath \"org.grails:grails-gradle-plugin:7.0.0-M3\"")
buildGradle.contains("classpath \"org.grails:grails-gradle-plugin:7.0.0-SNAPSHOT\"")

}

Expand Down

0 comments on commit ca7777a

Please sign in to comment.