diff --git a/bin/bootstrap_system.sh b/bin/bootstrap_system.sh index 9d043d017b..fd8f41a306 100755 --- a/bin/bootstrap_system.sh +++ b/bin/bootstrap_system.sh @@ -241,19 +241,19 @@ redhat sudo yum clean all # Download ant for centos redhat sudo wget -nv \ - https://downloads.apache.org/ant/binaries/apache-ant-1.9.14-bin.tar.gz -redhat sha512sum -c - <<< '487dbd1d7f678a92924ba884a57e910ccb4fe565c554278795a8fdfc80c4e88d81ebc2ccecb5a8f353f0b2076572bb921499a2cadb064e0f44fc406a3c31da20 apache-ant-1.9.14-bin.tar.gz' -redhat sudo tar -C /usr/local -xzf apache-ant-1.9.14-bin.tar.gz -redhat sudo ln -s /usr/local/apache-ant-1.9.14/bin/ant /usr/local/bin + https://downloads.apache.org/ant/binaries/apache-ant-1.9.16-bin.tar.gz +redhat sha512sum -c - <<< '8d542a7a636a491e76170148881b6f413f4564aad1ab034f426bd946be93382001862bd6c60865aa2b57b39b9633e0181fe8997dd6323123aaf76b410ec4a366 apache-ant-1.9.16-bin.tar.gz' +redhat sudo tar -C /usr/local -xzf apache-ant-1.9.16-bin.tar.gz +redhat sudo ln -sf /usr/local/apache-ant-1.9.16/bin/ant /usr/local/bin # Download maven for all OSes, since the OS-packaged version can be # pretty old. -if [ ! -d /usr/local/apache-maven-3.5.4 ]; then +if [ ! -d /usr/local/apache-maven-3.8.8 ]; then sudo wget -nv \ - https://downloads.apache.org/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz - sha512sum -c - <<< '2a803f578f341e164f6753e410413d16ab60fabe31dc491d1fe35c984a5cce696bc71f57757d4538fe7738be04065a216f3ebad4ef7e0ce1bb4c51bc36d6be86 apache-maven-3.5.4-bin.tar.gz' - sudo tar -C /usr/local -xzf apache-maven-3.5.4-bin.tar.gz - sudo ln -s /usr/local/apache-maven-3.5.4/bin/mvn /usr/local/bin + https://downloads.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz + sha512sum -c - <<< '332088670d14fa9ff346e6858ca0acca304666596fec86eea89253bd496d3c90deae2be5091be199f48e09d46cec817c6419d5161fb4ee37871503f472765d00 apache-maven-3.8.8-bin.tar.gz' + sudo tar -C /usr/local -xzf apache-maven-3.8.8-bin.tar.gz + sudo ln -sf /usr/local/apache-maven-3.8.8/bin/mvn /usr/local/bin fi if ! { service --status-all | grep -E '^ \[ \+ \] ssh$'; } diff --git a/fe/pom.xml b/fe/pom.xml index 84e30bfa65..8503870d5e 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -52,7 +52,7 @@ under the License. org.apache.impala impala-data-source-api - ${impala.extdatasrc.api.version} + 3.4.0.7.1.7.1065-1 org.apache.hadoop @@ -140,20 +140,20 @@ under the License. org.apache.hudi hudi-hadoop-mr ${hudi.version} - - - org.apache.parquet - parquet-avro - - - org.apache.hadoop - * - - - org.apache.hive - * - - + + + org.apache.parquet + parquet-avro + + + org.apache.hadoop + * + + + org.apache.hive + * + + @@ -195,7 +195,7 @@ under the License. org.apache.impala yarn-extras - ${yarn-extras.version} + 3.4.0.7.1.7.1065-1 @@ -334,7 +334,7 @@ under the License. org.apache.hadoop hadoop-common - + org.apache.hive * @@ -345,12 +345,12 @@ under the License. org.apache.hbase hbase-client ${hbase.version} - - - - net.minidev - json-smart - + + + + net.minidev + json-smart + @@ -358,12 +358,12 @@ under the License. org.apache.hbase hbase-common ${hbase.version} - - - - net.minidev - json-smart - + + + + net.minidev + json-smart + @@ -456,9 +456,9 @@ under the License. - com.google.errorprone - error_prone_annotations - 2.3.1 + com.google.errorprone + error_prone_annotations + 2.3.1 @@ -469,9 +469,9 @@ under the License. - org.ehcache - sizeof - 0.3.0 + org.ehcache + sizeof + 0.3.0 @@ -557,13 +557,13 @@ under the License. org.apache.maven.plugins maven-jar-plugin 2.6 - - - - test-jar - - - + + + + test-jar + + + @@ -648,14 +648,23 @@ under the License. maven-surefire-plugin 2.20 - false - ${surefire.reports.dir} - true - ${surefireJacocoArg} - ${testcase.groups} + 3 + true + -Xmx1024m -XX:MaxPermSize=256m + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + true - org.codehaus.mojo build-helper-maven-plugin @@ -677,7 +686,7 @@ under the License. ${project.basedir}/generated-sources/gen-java ${project.build.directory}/generated-sources/cup ${project.basedir}/src/compat-hive-${hive.major.version}/java - + @@ -702,7 +711,7 @@ under the License. jacoco-report test - report + report ${jacoco.data.file} @@ -920,14 +929,14 @@ under the License. org.apache.calcite.avatica avatica - - org.eclipse.jetty - * - - - ant - * - + + org.eclipse.jetty + * + + + ant + * + @@ -1268,7 +1277,7 @@ under the License. ${env.THRIFT_HOME}/bin/thrift - + ${env.THRIFT_HOME}/bin/thrift @@ -1338,13 +1347,13 @@ under the License. m2e.version - - - ${project.build.directory}/${eclipse.output.directory} - + + + ${project.build.directory}/${eclipse.output.directory} + diff --git a/impala-parent/pom.xml b/impala-parent/pom.xml index 7c54e4b06c..b971a9f22e 100644 --- a/impala-parent/pom.xml +++ b/impala-parent/pom.xml @@ -46,7 +46,7 @@ under the License. ${env.IMPALA_KNOX_VERSION} 0.9.3-1 1.0-SNAPSHOT - 1.0-SNAPSHOT + 3.4.0.7.1.7.1065-1 UTF-8 ${env.IMPALA_KUDU_JAVA_VERSION} 2.6 @@ -143,7 +143,7 @@ under the License. cdh.rcs.releases.repo - https://repository.cloudera.com/content/groups/cdh-releases-rcs + https://repository.cloudera.com/artifactory/cdh-releases-rcs CDH Releases Repository true @@ -192,14 +192,7 @@ under the License. ${env.IMPALA_TOOLCHAIN_KUDU_MAVEN_REPOSITORY_ENABLED} - - cloudera.thirdparty.repo - https://repository.cloudera.com/content/repositories/third-party - Cloudera Third Party Repository - - false - - +