gil 231e3f
diff -Nru commons-vfs-2.0/core/pom.xml commons-vfs-2.0-gil/core/pom.xml
gil 231e3f
--- commons-vfs-2.0/core/pom.xml	2011-08-18 15:57:10.000000000 +0200
gil 231e3f
+++ commons-vfs-2.0-gil/core/pom.xml	2012-06-18 11:47:33.151985239 +0200
gil 231e3f
@@ -40,7 +40,7 @@
gil 231e3f
       <artifactId>commons-logging</artifactId>
gil 231e3f
     </dependency>
gil 231e3f
     <dependency>
gil 231e3f
-      <groupId>ant</groupId>
gil 231e3f
+      <groupId>org.apache.ant</groupId>
gil 231e3f
       <artifactId>ant</artifactId>
gil 231e3f
       <optional>true</optional>
gil 231e3f
     </dependency>
gil 231e3f
@@ -64,11 +64,11 @@
gil 231e3f
       <artifactId>commons-httpclient</artifactId>
gil 231e3f
       <optional>true</optional>
gil 231e3f
     </dependency>
gil 231e3f
-    <dependency>
gil 231e3f
+    
gil 231e3f
       <groupId>org.apache.jackrabbit</groupId>
gil 231e3f
       <artifactId>jackrabbit-webdav</artifactId>
gil 231e3f
       <optional>true</optional>
gil 231e3f
-    </dependency>
gil 231e3f
+    </dependency-->
gil 231e3f
     <dependency>
gil 231e3f
       <groupId>com.jcraft</groupId>
gil 231e3f
       <artifactId>jsch</artifactId>
gil 231e3f
@@ -167,6 +167,37 @@
gil 231e3f
         </configuration>
gil 231e3f
       </plugin>
gil 231e3f
 
gil 231e3f
+      <plugin>
gil 231e3f
+        <groupId>org.apache.maven.plugins</groupId>
gil 231e3f
+        <artifactId>maven-compiler-plugin</artifactId>
gil 231e3f
+        <executions>
gil 231e3f
+          <execution>
gil 231e3f
+            <id>default-compile</id>
gil 231e3f
+            <phase>compile</phase>
gil 231e3f
+            <configuration>
gil 231e3f
+              <excludes>
gil 231e3f
+                <exclude>**/webdav/*</exclude>
gil 231e3f
+              </excludes>
gil 231e3f
+            </configuration>
gil 231e3f
+            <goals>
gil 231e3f
+              <goal>compile</goal>
gil 231e3f
+            </goals>
gil 231e3f
+          </execution>
gil 231e3f
+          <execution>
gil 231e3f
+            <id>default-testCompile</id>
gil 231e3f
+            <phase>test-compile</phase>
gil 231e3f
+            <configuration>
gil 231e3f
+              <testExcludes>
gil 231e3f
+                <exclude>**/webdav/test/*</exclude>
gil 231e3f
+              </testExcludes>
gil 231e3f
+            </configuration>
gil 231e3f
+            <goals>
gil 231e3f
+              <goal>testCompile</goal>
gil 231e3f
+            </goals>
gil 231e3f
+          </execution>
gil 231e3f
+        </executions>
gil 231e3f
+      </plugin>
gil 231e3f
+
gil 231e3f
     </plugins>
gil 231e3f
   </build>
gil 231e3f
   <profiles>
gil 231e3f
diff -Nru commons-vfs-2.0/pom.xml commons-vfs-2.0-gil/pom.xml
gil 231e3f
--- commons-vfs-2.0/pom.xml	2011-08-18 15:57:11.000000000 +0200
gil 231e3f
+++ commons-vfs-2.0-gil/pom.xml	2012-06-18 11:53:03.379995343 +0200
gil 231e3f
@@ -187,14 +187,14 @@
gil 231e3f
         <groupId>org.apache.maven.plugins</groupId>
gil 231e3f
         <artifactId>maven-checkstyle-plugin</artifactId>
gil 231e3f
       </plugin>
gil 231e3f
-      <plugin>
gil 231e3f
+      
gil 231e3f
         <groupId>org.apache.commons</groupId>
gil 231e3f
         <artifactId>commons-build-plugin</artifactId>
gil 231e3f
-        
gil 231e3f
+        < version inherited from commons-parent >
gil 231e3f
         <configuration>
gil 231e3f
             <commons.release.name>commons-${commons.componentid}-${commons.release.version}</commons.release.name>
gil 231e3f
         </configuration>
gil 231e3f
-      </plugin>
gil 231e3f
+      </plugin-->
gil 231e3f
     </plugins>
gil 231e3f
   </build>
gil 231e3f
 
gil 231e3f
@@ -243,9 +243,10 @@
gil 231e3f
             </tag>
gil 231e3f
           </tags>
gil 231e3f
           <aggregate>true</aggregate>
gil 231e3f
+          <excludePackageNames>*.webdav.*</excludePackageNames>
gil 231e3f
         </configuration>
gil 231e3f
       </plugin>
gil 231e3f
-      <plugin>
gil 231e3f
+      
gil 231e3f
         <groupId>org.codehaus.mojo</groupId>
gil 231e3f
         <artifactId>findbugs-maven-plugin</artifactId>
gil 231e3f
         <version>2.3.2</version>
gil 231e3f
@@ -254,7 +255,7 @@
gil 231e3f
           <effort>Default</effort>
gil 231e3f
           <excludeFilterFile>findbugs-exclude-filter.xml</excludeFilterFile>
gil 231e3f
        </configuration>
gil 231e3f
-      </plugin>
gil 231e3f
+      </plugin-->
gil 231e3f
     </plugins>
gil 231e3f
   </reporting>
gil 231e3f
 
gil 231e3f
@@ -273,11 +274,11 @@
gil 231e3f
         <type>test-jar</type>
gil 231e3f
         <scope>test</scope>
gil 231e3f
       </dependency>
gil 231e3f
-      <dependency>
gil 231e3f
+      
gil 231e3f
         <groupId>org.apache.commons</groupId>
gil 231e3f
         <artifactId>commons-vfs-sandbox</artifactId>
gil 231e3f
         <version>${project.version}</version>
gil 231e3f
-      </dependency>
gil 231e3f
+      </dependency-->
gil 231e3f
       <dependency>
gil 231e3f
         <groupId>org.apache.commons</groupId>
gil 231e3f
         <artifactId>commons-vfs-examples</artifactId>
gil 231e3f
@@ -310,13 +311,13 @@
gil 231e3f
         <artifactId>commons-compress</artifactId>
gil 231e3f
         <version>1.1</version>
gil 231e3f
       </dependency>
gil 231e3f
-      <dependency>
gil 231e3f
+      
gil 231e3f
         <groupId>org.apache.jackrabbit</groupId>
gil 231e3f
         <artifactId>jackrabbit-webdav</artifactId>
gil 231e3f
         <version>1.5.2</version>
gil 231e3f
-      </dependency>
gil 231e3f
+      </dependency-->
gil 231e3f
       <dependency>
gil 231e3f
-        <groupId>ant</groupId>
gil 231e3f
+        <groupId>org.apache.ant</groupId>
gil 231e3f
         <artifactId>ant</artifactId>
gil 231e3f
         <version>1.6.2</version>
gil 231e3f
       </dependency>
gil 231e3f
@@ -349,7 +350,7 @@
gil 231e3f
     </dependencies>
gil 231e3f
   </dependencyManagement>
gil 231e3f
 
gil 231e3f
-  <dependencies>
gil 231e3f
+  
gil 231e3f
     <dependency>
gil 231e3f
       <groupId>org.apache.maven.scm</groupId>
gil 231e3f
       <artifactId>maven-scm-api</artifactId>
gil 231e3f
@@ -360,7 +361,7 @@
gil 231e3f
       <artifactId>maven-scm-provider-svnexe</artifactId>
gil 231e3f
       <version>1.4</version>
gil 231e3f
     </dependency>
gil 231e3f
-  </dependencies>
gil 231e3f
+  </dependencies-->
gil 231e3f
 
gil 231e3f
   <repositories>
gil 231e3f
     <repository>