5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-02 19:50:39 +08:00

SQOOP-3352: Bump java target version to 1.8

(Boglarka Egyed via Szabolcs Vasas)
This commit is contained in:
Szabolcs Vasas 2018-07-25 17:00:16 +02:00
parent b148d54000
commit eefb7a0f3e
6 changed files with 10 additions and 10 deletions

View File

@ -27,8 +27,8 @@ under the License.
Compiling Sqoop requires the following tools:
* Apache ant (1.7.1) or Gradle (3.5.1)
* Java JDK 1.6
* Apache ant (1.9.7) or Gradle (3.5.1)
* Java JDK 1.8
Additionally, building the documentation requires these tools:

View File

@ -20,8 +20,8 @@ available in the +docs/+ directory.
Compiling Sqoop requires the following tools:
* Apache ant (1.7.1)
* Java JDK 1.6
* Apache ant (1.9.7)
* Java JDK 1.8
Additionally, building the documentation requires these tools:

View File

@ -176,7 +176,7 @@ tasks.withType(Test) {
minHeapSize = "512m"
maxHeapSize = "5120m"
jvmArgs '-Xmx5012m', '-XX:PermSize=256m', '-XX:MaxPermSize=512m', "-da:org.apache.hadoop.hive.thrift.HadoopThriftAuthBridge"
jvmArgs '-Xmx5012m', "-da:org.apache.hadoop.hive.thrift.HadoopThriftAuthBridge"
forkEvery 1
dependsOn buildFolder

View File

@ -115,8 +115,8 @@
<property name="src.tar.file" location="${build.dir}/${src.artifact.name}.tar.gz" />
<!-- compilation -->
<property name="targetJavaVersion" value="1.7" />
<property name="sourceJavaVersion" value="1.7" />
<property name="targetJavaVersion" value="1.8" />
<property name="sourceJavaVersion" value="1.8" />
<property name="javac.deprecation" value="off"/>
<property name="javac.debug" value="on"/>
<property name="build.encoding" value="ISO-8859-1"/>

View File

@ -17,7 +17,7 @@
# This properties file lists the versions of the various artifacts we use in gradle.
javaSourceCompatibilityVersion=1.7
javaSourceCompatibilityVersion=1.8
avroVersion=1.8.1
kitedataVersion=1.1.0

View File

@ -41,8 +41,8 @@ JAVA_HOME::
As part of its import process, Sqoop generates and compiles Java code
by invoking the Java compiler *javac*(1). As a result, JAVA_HOME must
be set to the location of your JDK (note: This cannot just be a JRE).
e.g., +/usr/java/default+. Hadoop (and Sqoop) requires Sun Java 1.6 which
can be downloaded from http://java.sun.com.
e.g., +/usr/java/default+. Hadoop (and Sqoop) requires Oracle Java 1.8 which
can be downloaded from http://www.oracle.com/technetwork/java/index.html.
HADOOP_COMMON_HOME::
The location of the Hadoop Common files (specifically the bin/hadoop executable).