Skip to content

Commit

Permalink
Groovy-2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
uli-heller committed May 10, 2014
1 parent e87b248 commit 7b21201
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ Version History
### 0.5.0 (not yet released)

* jdbc-copy: New tool (work in progress)
* Use groovy-2.2.1 to compile all groovy scripts

* wikitext: New tool

* Use groovy-2.3.0 to compile all groovy scripts

* gradlew: Use version 1.12 (used to be 1.10, 1.11)

### 0.4.0 - 2014-02-08
Expand Down
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ configure(subprojects) { project ->
}
}

configure(allprojects) { project ->
ext.groovyVersion = '2.3.0'
}

htmlDependencyReport {
projects = project.allprojects
}
Expand Down
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ task(jarsToLib) {
}
}
}
*/
*/
2 changes: 1 addition & 1 deletion gradle-local-repository/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mainClassName='copyArtifacts'; // for 'gradle run' and MANIFEST.MF
ext.groovyScriptName="${projectDir}/scripts/copyArtifacts.groovy";

dependencies {
compile 'org.codehaus.groovy:groovy-all:2.2.1'
compile "org.codehaus.groovy:groovy-all:${groovyVersion}"
testCompile 'junit:junit:4.11'
runtime "commons-cli:commons-cli:1.2"
runtime 'org.apache.ant:ant:1.9.2'
Expand Down
2 changes: 1 addition & 1 deletion i18nbinder/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mainClassName='i18nbinder'; // for 'gradle run' and MANIFEST.MF
ext.groovyScriptName="${projectDir}/scripts/i18nbinder.groovy";

dependencies {
compile 'org.codehaus.groovy:groovy-all:2.2.1'
compile "org.codehaus.groovy:groovy-all:${groovyVersion}"
compile 'org.omnaest.i18nbinder:i18nbinder-ant:0.1.17'
runtime "commons-cli:commons-cli:1.2"
runtime 'org.apache.ant:ant:1.9.3'
Expand Down
2 changes: 1 addition & 1 deletion jdbc-copy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mainClassName='jdbcCopy'; // for 'gradle run' and MANIFEST.MF
ext.groovyScriptName="${projectDir}/scripts/jdbcCopy.groovy";

dependencies {
compile 'org.codehaus.groovy:groovy-all:2.2.2'
compile "org.codehaus.groovy:groovy-all:${groovyVersion}"
testCompile 'junit:junit:4.11'
runtime "commons-cli:commons-cli:1.2"
runtime 'org.apache.ant:ant:1.9.3'
Expand Down
2 changes: 1 addition & 1 deletion xmldiff/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mainClassName='org.uli.xmldiff.XmlDiff'; // for 'gradle run' and MANIFEST.MF
ext.groovyScriptName="${projectDir}/scripts/xmldiff.groovy";

dependencies {
//compile 'org.codehaus.groovy:groovy-all:2.2.1'
//compile "org.codehaus.groovy:groovy-all:${groovyVersion}"
compile 'xmlunit:xmlunit:1.5'
testCompile 'junit:junit:4.11'
//runtime "commons-cli:commons-cli:1.2"
Expand Down

0 comments on commit 7b21201

Please sign in to comment.