aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorPrashant Sharma <prashant.s@imaginea.com>2014-10-23 23:49:50 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-10-23 23:49:50 -0700
commit0aea22895ce94f4f80faad5a2c41b76edac172b9 (patch)
tree7bd0246c883480b0f05db6fa25fb196cee7abd35 /pom.xml
parenta29c9bd614e6d8088f759ae39218b945604d0b5b (diff)
downloadspark-0aea22895ce94f4f80faad5a2c41b76edac172b9.tar.gz
spark-0aea22895ce94f4f80faad5a2c41b76edac172b9.tar.bz2
spark-0aea22895ce94f4f80faad5a2c41b76edac172b9.zip
SPARK-3812 Build changes to publish effective pom.
Author: Prashant Sharma <prashant.s@imaginea.com> Closes #2921 from ScrapCodes/build-changes-effective-pom and squashes the following commits: 8841491 [Prashant Sharma] Fixed broken maven build. aa7b91d [Prashant Sharma] used an unused dep. 0300dac [Prashant Sharma] improved comment messages.. 28f891e [Prashant Sharma] Added a useless dependency, so that we can shade it. And realized fake shading works for us. 553d96b [Prashant Sharma] Shaded some unused class of an unused dep, to generate effective pom(s)
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml33
1 files changed, 32 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index a7e71f9ca5..a9897b866b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -248,7 +248,17 @@
</snapshots>
</pluginRepository>
</pluginRepositories>
-
+ <!--
+ This is a dummy dependency that is used along with the shading plug-in
+ to create effective poms on publishing (see SPARK-3812).
+ -->
+ <dependencies>
+ <dependency>
+ <groupId>org.spark-project.spark</groupId>
+ <artifactId>unused</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ </dependencies>
<dependencyManagement>
<dependencies>
<dependency>
@@ -997,6 +1007,27 @@
</pluginManagement>
<plugins>
+ <!-- The shade plug-in is used here to create effective pom's (see SPARK-3812). -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <configuration>
+ <shadedArtifactAttached>false</shadedArtifactAttached>
+ <artifactSet>
+ <includes>
+ <include>org.spark-project.spark:unused</include>
+ </includes>
+ </artifactSet>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>