You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by cc...@apache.org on 2010/03/17 22:46:18 UTC

svn commit: r924507 - /servicemix/smx4/features/trunk/deps/pom.xml

Author: ccustine
Date: Wed Mar 17 21:46:17 2010
New Revision: 924507

URL: http://svn.apache.org/viewvc?rev=924507&view=rev
Log:
Maven 3 seems to detect that there is nothing to do in this project and does not download the dependencies.  Forcing resolution via dependency plugin.

Modified:
    servicemix/smx4/features/trunk/deps/pom.xml

Modified: servicemix/smx4/features/trunk/deps/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/deps/pom.xml?rev=924507&r1=924506&r2=924507&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/deps/pom.xml (original)
+++ servicemix/smx4/features/trunk/deps/pom.xml Wed Mar 17 21:46:17 2010
@@ -54,4 +54,23 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>resolve</goal>
+            </goals>
+            <configuration>
+              <silent>true</silent>
+              <excludeTransitive>true</excludeTransitive>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>