Maven plugin for publishing your spark projects on spark-packages.org.
Add the plugin to the build plugins section of your pom.xml:
<build>
<plugins>
<plugin>
<groupId>info.debatty</groupId>
<artifactId>sparkpackage-maven-plugin</artifactId>
<version>0.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>zip</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
With the above configuration, type mvn package
to build the correct zip for spark-packages.org.