You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/10/24 08:49:55 UTC

git commit: SPARK-3812 Build changes to publish effective pom.

Repository: spark
Updated Branches:
  refs/heads/master a29c9bd61 -> 0aea22895


SPARK-3812 Build changes to publish effective pom.

Author: Prashant Sharma <pr...@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)


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0aea2289
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0aea2289
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0aea2289

Branch: refs/heads/master
Commit: 0aea22895ce94f4f80faad5a2c41b76edac172b9
Parents: a29c9bd
Author: Prashant Sharma <pr...@imaginea.com>
Authored: Thu Oct 23 23:49:50 2014 -0700
Committer: Patrick Wendell <pw...@gmail.com>
Committed: Thu Oct 23 23:49:50 2014 -0700

----------------------------------------------------------------------
 pom.xml | 33 ++++++++++++++++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/0aea2289/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a7e71f9..a9897b8 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>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org