Skip to content

Commit

Permalink
Downgrade Grails Forge to 5.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetbehl committed Jul 18, 2022
1 parent cc90935 commit 7f8f6a7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version=2.2.0
grailsVersion=5.2.1
viewsVersion=2.3.2
grailsVersion=5.1.9-SNAPSHOT
viewsVersion=2.2.1
gradleGitPropertiesVersion=2.3.1
springBootVersion=2.7.0
springBootVersion=2.6.6
grailsNavigationVersion=0.8
seleniumVersion=4.0.0
groovyVersion=3.0.11
grailsGradlePluginVersion=5.2.1
grailsGradlePluginVersion=5.1.4
chromeDriverVersion=2.45
org.gradle.caching=true
org.gradle.daemon=true
Expand Down
4 changes: 2 additions & 2 deletions src/integration-test/groovy/appgenerator/HomePageSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class HomePageSpec extends GebSpec {
def "if you select features and change name features changes are not lost"() {
when:
HomePage homePage = to HomePage
homePage.version('5.2.1')
homePage.version('5.1.8')

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

when:
homePage.version('5.2.1')
homePage.version('5.1.8')

then:
waitFor { homePage.curl.contains 'curl -O https://start.grails.org/app.zip' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ class VersionsControllerIntegrationSpec extends Specification {
List<String> versions = result.collect { it.version } as List<String>

then:
versions.containsAll(['5.2.1'])
versions.containsAll(['5.1.8'])
}
}
2 changes: 1 addition & 1 deletion src/main/groovy/appgenerator/GrailsVersionService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import javax.inject.Singleton
class GrailsVersionService {

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

Expand Down

0 comments on commit 7f8f6a7

Please sign in to comment.