Repository: spark Updated Branches: refs/heads/branch-2.2 3ea6fd0c4 -> 210f2922b
[SPARK-22511][BUILD] Update maven central repo address Use repo.maven.apache.org repo address; use latest ASF parent POM version 18 Existing tests; no functional change Author: Sean Owen <[email protected]> Closes #19742 from srowen/SPARK-22511. (cherry picked from commit b009722591d2635698233c84f6e7e6cde7177019) Signed-off-by: Sean Owen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/210f2922 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/210f2922 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/210f2922 Branch: refs/heads/branch-2.2 Commit: 210f2922bf7dc9e4ff3c88236429c77cd454196b Parents: 3ea6fd0 Author: Sean Owen <[email protected]> Authored: Tue Nov 14 17:58:07 2017 -0600 Committer: Sean Owen <[email protected]> Committed: Tue Nov 14 17:59:37 2017 -0600 ---------------------------------------------------------------------- dev/check-license | 2 +- pom.xml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/210f2922/dev/check-license ---------------------------------------------------------------------- diff --git a/dev/check-license b/dev/check-license index 678e73f..261ca51 100755 --- a/dev/check-license +++ b/dev/check-license @@ -20,7 +20,7 @@ acquire_rat_jar () { - URL="http://repo1.maven.org/maven2/org/apache/rat/apache-rat/${RAT_VERSION}/apache-rat-${RAT_VERSION}.jar" + URL="https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat/${RAT_VERSION}/apache-rat-${RAT_VERSION}.jar" JAR="$rat_jar" http://git-wip-us.apache.org/repos/asf/spark/blob/210f2922/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ae111e9..ada746c 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> - <version>14</version> + <version>18</version> </parent> <groupId>org.apache.spark</groupId> <artifactId>spark-parent_2.11</artifactId> @@ -114,6 +114,8 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> + <maven.compiler.source>${java.version}</maven.compiler.source> + <maven.compiler.target>${java.version}</maven.compiler.target> <maven.version>3.3.9</maven.version> <sbt.project.name>spark</sbt.project.name> <slf4j.version>1.7.16</slf4j.version> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
