Skip to content

Commit

Permalink
GRAILS-6577 - upgrade to Groovy 1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Brown committed Aug 4, 2010
1 parent baa4373 commit 888b94a
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .classpath
Expand Up @@ -56,7 +56,7 @@
<classpathentry kind="lib" path="lib/ehcache-core-1.7.1.jar"/>
<classpathentry kind="lib" path="lib/core-renderer-R8.jar"/>
<classpathentry kind="var" path="ASPECTJRT_LIB"/>
<classpathentry kind="lib" path="lib/groovy-all-1.7.3.jar"/>
<classpathentry kind="lib" path="lib/groovy-all-1.7.4.jar"/>
<classpathentry kind="lib" path="lib/aspectjrt-1.6.8.jar"/>
<classpathentry kind="lib" path="lib/aspectjweaver-1.6.8.jar"/>
<classpathentry kind="lib" path="lib/org.springframework.aop-3.0.3.RELEASE.jar"/>
Expand Down
2 changes: 1 addition & 1 deletion bin/startGrails
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.7.3.jar:$GRAILS_HOME/dist/grails-bootstrap-1.3.4.jar"
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.7.4.jar:$GRAILS_HOME/dist/grails-bootstrap-1.3.4.jar"

# Allow access to Cocoa classes on OS X
if $darwin; then
Expand Down
2 changes: 1 addition & 1 deletion bin/startGrails.bat
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.7.3.jar;%GRAILS_HOME%\dist\grails-bootstrap-1.3.4.jar
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.7.4.jar;%GRAILS_HOME%\dist\grails-bootstrap-1.3.4.jar

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

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -23,7 +23,7 @@ configurations {
dependencies {
lib = "$projectDir/lib"
groovy files(fileTree(dir: lib as File, includes: ['groovy-all-1.7.*.jar']))
compile files(fileTree(dir: lib as File, includes: ['*.jar'], excludes: ['jsp-api-2.1.jar', 'groovy-all-1.7.3.jar']), "${System.getenv('JAVA_HOME')}/lib/tools.jar")
compile files(fileTree(dir: lib as File, includes: ['*.jar'], excludes: ['jsp-api-2.1.jar', 'groovy-all-1.7.4.jar']), "${System.getenv('JAVA_HOME')}/lib/tools.jar")
jsp21 files("$lib/jsp-api-2.1.jar")
}

Expand Down
2 changes: 1 addition & 1 deletion build.properties
Expand Up @@ -16,7 +16,7 @@ bundlor.servlet.version=2.5.0
bundlor.jndi.version=1.2.0
bundlor.servlet.jsp.version=2.1.0
bundlor.radeox.version=1.0.0.b2
bundlor.groovy.version=1.7.3
bundlor.groovy.version=1.7.4
bundlor.spring.version=3.0.3.RELEASE
bundlor.ant.version=1.7.1
bundlor.ivy.version=2.0.0
Expand Down
2 changes: 1 addition & 1 deletion conf/groovy-starter.conf
Expand Up @@ -10,7 +10,7 @@
##
# Load required libraries
load ${grails.home}/dist/grails-bootstrap-${grails.version}.jar
load ${grails.home}/lib/groovy-all-1.7.3.jar
load ${grails.home}/lib/groovy-all-1.7.4.jar
load ${grails.home}/lib/gpars-0.9.jar
load ${grails.home}/lib/ivy-2.1.0.jar
load ${grails.home}/lib/gant_groovy1.7-1.9.2.jar
Expand Down
4 changes: 2 additions & 2 deletions dependencies.txt
Expand Up @@ -83,8 +83,8 @@ The following libraries are included in Grails because they are required either
- Gant 1.9.2 (http://gant.codehaus.org) Apache 2.0 License
- required for the command line tools (Gant)

* groovy-all-1.7.3.jar
- Groovy 1.7.3 (http://groovy.codehaus.org) Apache 2.0 License
* groovy-all-1.7.4.jar
- Groovy 1.7.4 (http://groovy.codehaus.org) Apache 2.0 License
- required for the command line tools (Gant)
- required for building Grails core
- required for running Grails applications
Expand Down
2 changes: 1 addition & 1 deletion grails.ipr
Expand Up @@ -573,7 +573,7 @@
</library>
<library name="Groovy">
<CLASSES>
<root url="jar://$PROJECT_DIR$/lib/groovy-all-1.7.3.jar!/" />
<root url="jar://$PROJECT_DIR$/lib/groovy-all-1.7.4.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion maven/grails-docs.pom.in
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.7.3</version>
<version>1.7.4</version>
<exclusions>
<exclusion>
<groupId>jline</groupId>
Expand Down
Expand Up @@ -248,7 +248,7 @@ class IvyDependencyManager extends AbstractIvyDependencyManager implements Depen
"javax.servlet:jsp-api:2.1"

// dependencies needed for compilation
"${compileTimeDependenciesMethod}"("org.codehaus.groovy:groovy-all:1.7.3") {
"${compileTimeDependenciesMethod}"("org.codehaus.groovy:groovy-all:1.7.4") {
excludes 'jline'
}

Expand Down
2 changes: 1 addition & 1 deletion src/resources/bash/startGrails
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.7.3.jar:$GRAILS_HOME/dist/grails-bootstrap-@grails.version@.jar"
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.7.4.jar:$GRAILS_HOME/dist/grails-bootstrap-@grails.version@.jar"

# Allow access to Cocoa classes on OS X
if $darwin; then
Expand Down
2 changes: 1 addition & 1 deletion src/resources/bash/startGrails.bat
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.7.3.jar;%GRAILS_HOME%\dist\grails-bootstrap-@grails.version@.jar
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.7.4.jar;%GRAILS_HOME%\dist\grails-bootstrap-@grails.version@.jar

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

Expand Down

0 comments on commit 888b94a

Please sign in to comment.