File tree 4 files changed +8
-8
lines changed
integration-test/groovy/appgenerator
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
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
4
4
gradleGitPropertiesVersion =2.3.1
5
- springBootVersion =2.7.0
5
+ springBootVersion =2.6.6
6
6
grailsNavigationVersion =0.8
7
7
seleniumVersion =4.0.0
8
8
groovyVersion =3.0.11
9
- grailsGradlePluginVersion =5.2.1
9
+ grailsGradlePluginVersion =5.1.4
10
10
chromeDriverVersion =2.45
11
11
org.gradle.caching =true
12
12
org.gradle.daemon =true
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class HomePageSpec extends GebSpec {
13
13
def " if you select features and change name features changes are not lost" () {
14
14
when :
15
15
HomePage homePage = to HomePage
16
- homePage. version(' 5.2.1 ' )
16
+ homePage. version(' 5.1.8 ' )
17
17
18
18
then :
19
19
waitFor { homePage. curl == ' curl -O https://start.grails.org/myapp.zip' }
@@ -43,7 +43,7 @@ class HomePageSpec extends GebSpec {
43
43
waitFor { homePage. curl. contains(' app.zip' ) }
44
44
45
45
when :
46
- homePage. version(' 5.2.1 ' )
46
+ homePage. version(' 5.1.8 ' )
47
47
48
48
then :
49
49
waitFor { homePage. curl. contains ' curl -O https://start.grails.org/app.zip' }
Original file line number Diff line number Diff line change @@ -53,6 +53,6 @@ class VersionsControllerIntegrationSpec extends Specification {
53
53
List<String > versions = result. collect { it. version } as List<String >
54
54
55
55
then :
56
- versions. containsAll([' 5.2.1 ' ])
56
+ versions. containsAll([' 5.1.8 ' ])
57
57
}
58
58
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import javax.inject.Singleton
11
11
class GrailsVersionService {
12
12
13
13
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" )
15
15
final static String MAVEN_METADATA = ' https://repo.grails.org/grails/core/org/grails/grails-core/maven-metadata.xml'
16
16
final static String MAVEN_METADATA_OSS = ' https://repo1.maven.org/maven2/org/grails/grails-core/maven-metadata.xml'
17
17
You can’t perform that action at this time.
0 commit comments