You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ec...@apache.org on 2014/12/20 12:12:06 UTC

svn commit: r1646953 - /commons/proper/vfs/trunk/pom.xml

Author: ecki
Date: Sat Dec 20 11:12:06 2014
New Revision: 1646953

URL: http://svn.apache.org/r1646953
Log:
Avoid artifact download errors while site build.

Modified:
    commons/proper/vfs/trunk/pom.xml

Modified: commons/proper/vfs/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/pom.xml?rev=1646953&r1=1646952&r2=1646953&view=diff
==============================================================================
--- commons/proper/vfs/trunk/pom.xml (original)
+++ commons/proper/vfs/trunk/pom.xml Sat Dec 20 11:12:06 2014
@@ -167,6 +167,7 @@
         </includes>
       </resource>
     </resources>
+
     <pluginManagement>
       <plugins>
         <plugin>
@@ -176,6 +177,7 @@
         </plugin>
       </plugins>
     </pluginManagement>
+
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -312,12 +314,12 @@
       </dependency>
       <dependency>
         <groupId>org.apache.commons</groupId>
-        <artifactId>commons-vfs-sandbox</artifactId>
+        <artifactId>commons-vfs2-sandbox</artifactId>
         <version>${project.version}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.commons</groupId>
-        <artifactId>commons-vfs-examples</artifactId>
+        <artifactId>commons-vfs2-examples</artifactId>
         <version>${project.version}</version>
       </dependency>
 
@@ -467,6 +469,12 @@
         <artifactId>hadoop-core</artifactId>
         <version>1.1.2</version>
         <scope>provided</scope>
+        <exclusions>
+          <exclusion> <!-- drags in dead repo, so avoid it -->
+            <groupId>com.sun.jersey</groupId>
+            <artifactId>jersey-server</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>org.apache.hadoop</groupId>