Skip to content
Open
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 bigtop-tests/smoke-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ subprojects {
}
}

ext.groovyVersion = '2.5.4'
ext.groovyVersion = '3.0.25'
ext.hadoopVersion = '2.7.4'
ext.hbaseVersion = '1.1.9'
ext.solrVersion = '8.11.4'
Expand Down
2 changes: 1 addition & 1 deletion bigtop.bom
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ bigtop {
'bigtop-groovy' {
name = 'bigtop-groovy'
relNotes = "Groovy: a dynamic language for the Java platform"
version { base = '2.5.4'; pkg = '2.5.4'; release = 1 }
version { base = '3.0.25'; pkg = '3.0.25'; release = 1 }
tarball { destination = "$name-${version.base}.tar.gz";
source = "apache-groovy-binary-${version.base}.zip" }
url { download_path = "/groovy/${version.base}/distribution/"
Expand Down
4 changes: 2 additions & 2 deletions bigtop_toolchain/manifests/groovy.pp
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@

require bigtop_toolchain::packages

$groovy_version = '2.5.4'
$groovy_version = '3.0.25'
$groovy = "apache-groovy-binary-${groovy_version}"

exec { 'Download Groovy':
command => "/usr/bin/wget https://dl.bintray.com/groovy/maven/${groovy}.zip",
command => "/usr/bin/wget https://archive.apache.org/dist/groovy/${groovy_version}/distribution/${groovy}.zip",
cwd => "/usr/src",
unless => "/usr/bin/test -f /usr/src/${groovy}.zip",
} ~>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ project(':itest-common') {
description = """iTest: system and integration testing in the cloud"""

dependencies {
compile group: 'org.codehaus.groovy', name: 'groovy-all', version:'2.5.4'
compile group: 'org.codehaus.groovy', name: 'groovy-all', version:'3.0.25'
compile group: 'junit', name: 'junit', version:'4.11'
compile group: 'commons-logging', name: 'commons-logging', version:'1.1'
compile group: 'org.apache.ant', name: 'ant', version:'1.8.2'
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

<itest-common.version>${project.version}</itest-common.version>

<groovy.version>2.5.4</groovy.version>
<groovy.version>3.0.25</groovy.version>
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
<maven-failsafe-plugin.version>2.12</maven-failsafe-plugin.version>
<groovy-eclipse-compiler.version>2.9.2-01</groovy-eclipse-compiler.version>
Expand Down