Skip to content

Commit

Permalink
version 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Brown committed Aug 26, 2010
1 parent 5ec493e commit 2172cca
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bin/startGrails
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ fi
if [ -z "$GROOVY_CONF" ]; then
GROOVY_CONF="$GRAILS_HOME/conf/groovy-starter.conf"
fi
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.6.8.jar:$GRAILS_HOME/dist/grails-bootstrap-1.2.4.BUILD-SNAPSHOT.jar"
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.6.8.jar:$GRAILS_HOME/dist/grails-bootstrap-1.2.4.jar"

# Allow access to Cocoa classes on OS X
if $darwin; then
Expand Down
2 changes: 1 addition & 1 deletion bin/startGrails.bat
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ set CMD_LINE_ARGS=%$

:execute
@rem Setup the command line
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.6.8.jar;%GRAILS_HOME%\dist\grails-bootstrap-1.2.4.BUILD-SNAPSHOT.jar
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.6.8.jar;%GRAILS_HOME%\dist\grails-bootstrap-1.2.4.jar

if exist "%USERPROFILE%/.groovy/init.bat" call "%USERPROFILE%/.groovy/init.bat"

Expand Down
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
grails.version=1.2.4.BUILD-SNAPSHOT
bundlor.grails.version=1.2.4.BUILD-SNAPSHOT
grails.version=1.2.4
bundlor.grails.version=1.2.4
grails.src.commons=src/commons
grails.src.groovy=src/groovy

Expand Down
6 changes: 3 additions & 3 deletions samples/petclinic/application.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#Grails Metadata file
#Thu Oct 01 11:54:33 CEST 2009
app.grails.version=1.2.3
app.grails.version=1.2.4
app.name=petclinic
app.servlet.version=2.4
app.version=0.1
plugins.hibernate=1.2.3
plugins.tomcat=1.2.3
plugins.hibernate=1.2.4
plugins.tomcat=1.2.4
2 changes: 1 addition & 1 deletion samples/petclinic/ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<conf name="build"/>
</configurations>
<dependencies>
<dependency org="org.grails" name="grails-bootstrap" rev="1.2.3" conf="build"/>
<dependency org="org.grails" name="grails-bootstrap" rev="1.2.4" conf="build"/>
</dependencies>
</ivy-module>
2 changes: 1 addition & 1 deletion src/test/grails/util/GrailsUtilTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void testEnvironment() {
}

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

protected void tearDown() throws Exception {
Expand Down

0 comments on commit 2172cca

Please sign in to comment.