Skip to content

Commit a05ea02

Browse files
committed
updated version to 2.3.1, updated spring loaded to 1.1.4 and scaffolding to 2.0.1
1 parent a2542c4 commit a05ea02

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ext.providedDeps = []
1818

1919
ext.provided = { providedDeps << it }
2020
ext {
21-
grailsVersion = '2.3.1.BUILD-SNAPSHOT'
21+
grailsVersion = '2.3.1'
2222
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
2323
antTraxVersion = "1.7.1"
2424
antVersion = "1.8.4"
@@ -39,7 +39,7 @@ ext {
3939
slf4jVersion = "1.7.5"
4040

4141
spockVersion = '0.7-groovy-2.0'
42-
springLoadedVersion = "1.1.3"
42+
springLoadedVersion = "1.1.4"
4343
springLoadedCommonOptions = "-noverify -Dspringloaded.synchronize=true -Djdk.reflect.allowGetCallerClass=true"
4444
springVersion = "3.2.4.RELEASE"
4545
ehcacheVersion = "2.4.6"

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
grails.version=2.3.1.BUILD-SNAPSHOT
1+
grails.version=2.3.1
22

gradle/assemble.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ task pluginsFromRepo {
105105
hibernate: "3.6.10.1",
106106
jquery: "1.10.2",
107107
resources: "1.2.1",
108-
scaffolding: "2.0.0",
108+
scaffolding: "2.0.1",
109109
tomcat: "7.0.42",
110110
webxml: "1.4.1"
111111
]

grails-resources/src/grails/grails-app/conf/BuildConfig.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ grails.project.dependency.resolution = {
5656
build ":tomcat:7.0.42"
5757

5858
// plugins for the compile step
59-
compile ":scaffolding:2.0.0"
59+
compile ":scaffolding:2.0.1"
6060
compile ':cache:1.1.1'
6161

6262
// plugins needed at runtime but not for compilation

grails-test-suite-uber/src/test/groovy/grails/util/GrailsUtilTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
public class GrailsUtilTests extends TestCase {
3636

3737
public void testGrailsVersion() {
38-
assertEquals("2.3.1.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
38+
assertEquals("2.3.1", GrailsUtil.getGrailsVersion());
3939
}
4040

4141
@Override

0 commit comments

Comments
 (0)