Skip to content

Commit c189fa5

Browse files
version 2.2.5
1 parent e3bd274 commit c189fa5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
apply plugin: 'idea'
1515

1616
ext {
17-
grailsVersion = '2.2.5.BUILD-SNAPSHOT'
17+
grailsVersion = '2.2.5'
1818
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
1919
antTraxVersion = "1.7.1"
2020
antVersion = "1.8.2"
@@ -50,7 +50,7 @@ ext {
5050

5151
version = grailsVersion
5252

53-
// directories created during the build which are related
53+
// directories created during the build which are related
5454
// to turning the workspace root into a GRAILS_HOME
5555
ext {
5656
homeDistDir = file("dist")
@@ -277,13 +277,13 @@ subprojects { project ->
277277

278278
/*
279279
Install a method that can be used to fine tune the poms, e.g…
280-
280+
281281
modifyPom { pom ->
282282
pom.dependencies.removeAll(pom.dependencies.findAll { it.scope == "test" })
283283
}
284-
284+
285285
Mods are run in order they are encountered in the build script.
286-
286+
287287
The pom argument is of the following type:
288288
http://maven.apache.org/ref/2.2.1/maven-model/apidocs/org/apache/maven/model/Model.html
289289
*/

build.properties

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

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.2.5.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
38+
assertEquals("2.2.5", GrailsUtil.getGrailsVersion());
3939
}
4040

4141
@Override

0 commit comments

Comments
 (0)