Skip to content

Commit

Permalink
version 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Brown committed Oct 11, 2010
1 parent 5173c1f commit e779125
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 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.5.BUILD-SNAPSHOT.jar"
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.6.8.jar:$GRAILS_HOME/dist/grails-bootstrap-1.2.5.jar"

# Allow access to Cocoa classes on OS X
if $darwin; then
Expand Down
4 changes: 2 additions & 2 deletions 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.5.BUILD-SNAPSHOT.jar
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.6.8.jar;%GRAILS_HOME%\dist\grails-bootstrap-1.2.5.jar

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

Expand All @@ -127,7 +127,7 @@ set TOOLS_JAR=%JAVA_HOME%\lib\tools.jar
if "%JAVA_OPTS%" == "" set JAVA_OPTS=-Xmx512m -XX:MaxPermSize=96m
set JAVA_OPTS=%JAVA_OPTS% -Dprogram.name="%PROGNAME%"
set JAVA_OPTS=%JAVA_OPTS% -Dgrails.home="%GRAILS_HOME%"
set JAVA_OPTS=%JAVA_OPTS% -Dgrails.version="1.2.5.BUILD-SNAPSHOT"
set JAVA_OPTS=%JAVA_OPTS% -Dgrails.version="1.2.5"
set JAVA_OPTS=%JAVA_OPTS% -Dbase.dir="."
set JAVA_OPTS=%JAVA_OPTS% -Dtools.jar="%TOOLS_JAR%"
set JAVA_OPTS=%JAVA_OPTS% -Dgroovy.starter.conf="%STARTER_CONF%"
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.5.BUILD-SNAPSHOT
bundlor.grails.version=1.2.5.BUILD-SNAPSHOT
grails.version=1.2.5
bundlor.grails.version=1.2.5
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.5.BUILD-SNAPSHOT
app.grails.version=1.2.5
app.name=petclinic
app.servlet.version=2.4
app.version=0.1
plugins.hibernate=1.2.5.BUILD-SNAPSHOT
plugins.tomcat=1.2.5.BUILD-SNAPSHOT
plugins.hibernate=1.2.5
plugins.tomcat=1.2.5
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.5.BUILD-SNAPSHOT" conf="build"/>
<dependency org="org.grails" name="grails-bootstrap" rev="1.2.5" 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.5.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
assertEquals("1.2.5", GrailsUtil.getGrailsVersion());
}

protected void tearDown() throws Exception {
Expand Down

0 comments on commit e779125

Please sign in to comment.