Github user andrewor14 commented on a diff in the pull request:
https://github.com/apache/spark/pull/2165#discussion_r16803715
--- Diff: core/pom.xml ---
@@ -306,26 +306,20 @@
</plugin>
<!-- Unzip py4j so we can include its files in the jar -->
<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.2.1</version>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
- <goal>exec</goal>
+ <goal>run</goal>
</goals>
</execution>
</executions>
<configuration>
- <executable>unzip</executable>
- <workingDirectory>../python</workingDirectory>
- <arguments>
- <argument>-o</argument>
- <argument>lib/py4j*.zip</argument>
- <argument>-d</argument>
- <argument>build</argument>
- </arguments>
+ <tasks>
+ <unzip src="../python/lib/py4j-0.8.2.1-src.zip" dest="build"
/>
--- End diff --
nit: 2 tabs instead of 4
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]