You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2014/02/01 17:46:53 UTC

svn commit: r1563440 - /servicemix/smx4/bundles/trunk/spring-core-3.2.7.RELEASE/pom.xml

Author: jbonofre
Date: Sat Feb  1 16:46:53 2014
New Revision: 1563440

URL: http://svn.apache.org/r1563440
Log:
[SMX4-1685] Fix shade plugin execution in spring-core 3.2.7.RELEASE bundle

Modified:
    servicemix/smx4/bundles/trunk/spring-core-3.2.7.RELEASE/pom.xml

Modified: servicemix/smx4/bundles/trunk/spring-core-3.2.7.RELEASE/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/spring-core-3.2.7.RELEASE/pom.xml?rev=1563440&r1=1563439&r2=1563440&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/spring-core-3.2.7.RELEASE/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/spring-core-3.2.7.RELEASE/pom.xml Sat Feb  1 16:46:53 2014
@@ -85,23 +85,31 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-shade-plugin</artifactId>
-                <configuration>
-                    <artifactSet>
-                        <includes>
-                            <include>${pkgGroupId}:${pkgArtifactId}</include>
-                        </includes>
-                    </artifactSet>
-                    <filters>
-                        <filter>
-                            <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                            <excludes>
-                                <exclude>**/*</exclude>
-                            </excludes>
-                        </filter>
-                    </filters>
-                    <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
-                    <createDependencyReducedPom>true</createDependencyReducedPom>
-                </configuration>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**/*</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
             </plugin>
         </plugins>
     </build>