Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ext {
datastoreVersion = "1.1.0.RELEASE"
gantVersion = "1.9.6"
gdocEngineVersion = "1.0.1"
groovyVersion = "1.8.7"
groovyVersion = "1.8.8"
gradleGroovyVersion = groovyVersion
gradleGroovyVersion = "1.8.2"
ivyVersion = "2.2.0"
Expand Down
4 changes: 2 additions & 2 deletions dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ The following libraries are included in Grails because they are required either
- Gant 1.9.5 (http://gant.codehaus.org) Apache 2.0 License
- required for the command line tools (Gant)

* groovy-all-1.8.7.jar
- Groovy 1.8.7 (http://groovy.codehaus.org) Apache 2.0 License
* groovy-all-1.8.8.jar
- Groovy 1.8.8 (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
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public Object doCall() {

// dependencies needed at compile time
ModuleRevisionId[] groovyDependencies = {
ModuleRevisionId.newInstance("org.codehaus.groovy", "groovy-all", "1.8.7")
ModuleRevisionId.newInstance("org.codehaus.groovy", "groovy-all", "1.8.8")
};
registerDependencies(dependencyManager, compileTimeDependenciesMethod, groovyDependencies, "jline");

Expand Down