Skip to content

Commit ed48510

Browse files
author
graeme
committed
upgrade to groovy 1.5, set to 1.0 RC3 release
git-svn-id: https://svn.codehaus.org/grails/trunk@6302 1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d
1 parent 8f628fa commit ed48510

File tree

9 files changed

+8
-8
lines changed

9 files changed

+8
-8
lines changed

.classpath

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
<classpathentry kind="lib" path="lib/dom4j-1.6.1.jar"/>
3535
<classpathentry kind="lib" path="lib/ehcache-1.2.4.jar"/>
3636
<classpathentry kind="lib" path="lib/ejb3-persistence.jar"/>
37-
<classpathentry kind="lib" path="lib/gant-0.3.4-SNAPSHOT.jar"/>
38-
<classpathentry kind="lib" path="lib/groovy-all-1.1-final-SNAPSHOT.jar"/>
37+
<classpathentry kind="lib" path="lib/gant-1.0.0.jar"/>
38+
<classpathentry kind="lib" path="lib/groovy-all-1.5.0.jar"/>
3939
<classpathentry kind="lib" path="lib/hibernate-annotations.jar"/>
4040
<classpathentry kind="lib" path="lib/hsqldb-1.8.0.5.jar"/>
4141
<classpathentry kind="lib" path="lib/jasper-compiler-5.5.15.jar"/>

bin/startGrails

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ fi
111111
if [ -z "$GROOVY_CONF" ]; then
112112
GROOVY_CONF="$GRAILS_HOME/conf/groovy-starter.conf"
113113
fi
114-
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.1-final-SNAPSHOT.jar:$GRAILS_HOME/dist/grails-cli-1.0-RC3-SNAPSHOT.jar"
114+
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.5.jar:$GRAILS_HOME/dist/grails-cli-1.0-RC3.jar"
115115

116116
# Allow access to Cocoa classes on OS X
117117
if $darwin; then

bin/startGrails.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ set CMD_LINE_ARGS=%$
118118

119119
:execute
120120
@rem Setup the command line
121-
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.1-final-SNAPSHOT.jar;%GRAILS_HOME%\dist\grails-cli-1.0-RC3-SNAPSHOT.jar
121+
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.5.jar;%GRAILS_HOME%\dist\grails-cli-1.0-RC3.jar
122122

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

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grails.version=1.0-RC3-SNAPSHOT
1+
grails.version=1.0-RC3
22
grails.src.commons=src/commons
33
grails.src.groovy=src/groovy
44

dependencies.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ The following libraries are included in Grails because they are required either
8383
- Gant 0.3.4 Snapshot build (http://groovy.codehaus.org/Gant)
8484
- required for the command line tools (Gant)
8585

86-
* groovy-all-1.1-final-SNAPSHOT.jar
87-
- Groovy 1.1 final Snapshot build (http://groovy.codehaus.org)
86+
* groovy-all-1.5.jar
87+
- Groovy 1.5 (http://groovy.codehaus.org)
8888
- required for the command line tools (Gant)
8989
- required for building Grails core
9090
- required for running Grails applications

lib/gant-0.3.4-SNAPSHOT.jar

-104 KB
Binary file not shown.

lib/gant-1.0.0.jar

107 KB
Binary file not shown.
Binary file not shown.

test/groovy/grails/util/GrailsUtilTests.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class GrailsUtilTests extends GroovyTestCase {
77

88
void testGrailsVersion() {
99

10-
assertEquals "1.0-RC3-SNAPSHOT", grails.util.GrailsUtil.getGrailsVersion()
10+
assertEquals "1.0-RC3", grails.util.GrailsUtil.getGrailsVersion()
1111
}
1212

1313
}

0 commit comments

Comments
 (0)