Repository: spark Updated Branches: refs/heads/master 5536f3181 -> 8f6d5734d
[SPARK-22875][BUILD] Assembly build fails for a high user id ## What changes were proposed in this pull request? Add tarLongFileMode=posix configuration for the assembly plugin ## How was this patch tested? Reran build successfully ``` ./build/mvn package -Pbigtop-dist -DskipTests -rf :spark-assembly_2.11 [INFO] Spark Project Assembly ............................. SUCCESS [ 23.082 s] ``` Author: Gera Shegalov <[email protected]> Closes #20055 from gerashegalov/gera/tarLongFileMode. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/8f6d5734 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/8f6d5734 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/8f6d5734 Branch: refs/heads/master Commit: 8f6d5734d504be89249fb6744ef4067be2e889fc Parents: 5536f31 Author: Gera Shegalov <[email protected]> Authored: Thu Dec 28 11:44:06 2017 -0600 Committer: Sean Owen <[email protected]> Committed: Thu Dec 28 11:44:06 2017 -0600 ---------------------------------------------------------------------- pom.xml | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/8f6d5734/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 92f8970..34793b0 100644 --- a/pom.xml +++ b/pom.xml @@ -2295,6 +2295,9 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> + <configuration> + <tarLongFileMode>posix</tarLongFileMode> + </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
