Skip to content

Commit 7f8f6a7

Browse files
committed
Downgrade Grails Forge to 5.1.9
1 parent cc90935 commit 7f8f6a7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
version=2.2.0
2-
grailsVersion=5.2.1
3-
viewsVersion=2.3.2
2+
grailsVersion=5.1.9-SNAPSHOT
3+
viewsVersion=2.2.1
44
gradleGitPropertiesVersion=2.3.1
5-
springBootVersion=2.7.0
5+
springBootVersion=2.6.6
66
grailsNavigationVersion=0.8
77
seleniumVersion=4.0.0
88
groovyVersion=3.0.11
9-
grailsGradlePluginVersion=5.2.1
9+
grailsGradlePluginVersion=5.1.4
1010
chromeDriverVersion=2.45
1111
org.gradle.caching=true
1212
org.gradle.daemon=true

src/integration-test/groovy/appgenerator/HomePageSpec.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class HomePageSpec extends GebSpec {
1313
def "if you select features and change name features changes are not lost"() {
1414
when:
1515
HomePage homePage = to HomePage
16-
homePage.version('5.2.1')
16+
homePage.version('5.1.8')
1717

1818
then:
1919
waitFor { homePage.curl == 'curl -O https://start.grails.org/myapp.zip' }
@@ -43,7 +43,7 @@ class HomePageSpec extends GebSpec {
4343
waitFor { homePage.curl.contains('app.zip') }
4444

4545
when:
46-
homePage.version('5.2.1')
46+
homePage.version('5.1.8')
4747

4848
then:
4949
waitFor { homePage.curl.contains 'curl -O https://start.grails.org/app.zip' }

src/integration-test/groovy/appgenerator/VersionsControllerIntegrationSpec.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ class VersionsControllerIntegrationSpec extends Specification {
5353
List<String> versions = result.collect { it.version } as List<String>
5454

5555
then:
56-
versions.containsAll(['5.2.1'])
56+
versions.containsAll(['5.1.8'])
5757
}
5858
}

src/main/groovy/appgenerator/GrailsVersionService.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import javax.inject.Singleton
1111
class GrailsVersionService {
1212

1313
final static GrailsVersion LOWEST_VERSION = new GrailsVersion("4.1.99")
14-
final static GrailsVersion HIGHEST_VERSION = new GrailsVersion("5.99.99")
14+
final static GrailsVersion HIGHEST_VERSION = new GrailsVersion("5.1.99")
1515
final static String MAVEN_METADATA= 'https://repo.grails.org/grails/core/org/grails/grails-core/maven-metadata.xml'
1616
final static String MAVEN_METADATA_OSS = 'https://repo1.maven.org/maven2/org/grails/grails-core/maven-metadata.xml'
1717

0 commit comments

Comments
 (0)