Skip to content

Commit

Permalink
version 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Scott Brown committed Mar 3, 2014
1 parent e3bd274 commit c189fa5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
apply plugin: 'idea'

ext {
grailsVersion = '2.2.5.BUILD-SNAPSHOT'
grailsVersion = '2.2.5'
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
antTraxVersion = "1.7.1"
antVersion = "1.8.2"
Expand Down Expand Up @@ -50,7 +50,7 @@ ext {

version = grailsVersion

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

/*
Install a method that can be used to fine tune the poms, e.g…
modifyPom { pom ->
pom.dependencies.removeAll(pom.dependencies.findAll { it.scope == "test" })
}
Mods are run in order they are encountered in the build script.
The pom argument is of the following type:
http://maven.apache.org/ref/2.2.1/maven-model/apidocs/org/apache/maven/model/Model.html
*/
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
grails.version=2.2.5.BUILD-SNAPSHOT
grails.version=2.2.5

Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class GrailsUtilTests extends TestCase {

public void testGrailsVersion() {
assertEquals("2.2.5.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
assertEquals("2.2.5", GrailsUtil.getGrailsVersion());
}

@Override
Expand Down

0 comments on commit c189fa5

Please sign in to comment.