Remove the portions of pom which use the shade plugin.

diff --git a/pom.xml b/pom.xml
index 88770e0..3c6aa45 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,12 +22,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
-  <parent>
-    <groupId>org.apache.maven</groupId>
-    <artifactId>maven-parent</artifactId>
-    <version>12</version>
-  </parent>
+  <!-- <parent> -->
+  <!--   <groupId>org.apache.maven</groupId> -->
+  <!--   <artifactId>maven-parent</artifactId> -->
+  <!--   <version>12</version> -->
+  <!-- </parent> -->
 
+  <groupId>org.apache.maven</groupId>
   <artifactId>maven-ant-tasks</artifactId>
   <version>2.0.10</version>
 
@@ -51,25 +52,25 @@
   </distributionManagement>
 
   <properties>
-    <mavenVersion>2.0.10</mavenVersion>
-    <wagonVersion>1.0-beta-2</wagonVersion>
+    <mavenVersion>2.2.1</mavenVersion>
+    <wagonVersion>1.0-beta-6</wagonVersion>
   </properties>
 
   <dependencies>
     <dependency>
-      <groupId>ant</groupId>
+      <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.6.2</version>
+      <version>1.8.0</version>
     </dependency>
     <dependency>
       <groupId>classworlds</groupId>
       <artifactId>classworlds</artifactId>
-      <version>1.1-alpha-2</version>
+      <version>1.1</version>
     </dependency>
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>3.8.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -86,7 +87,12 @@
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
-      <version>1.5.5</version>
+      <version>1.5.15</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-interpolation</artifactId>
+      <version>1.11</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
@@ -135,62 +141,62 @@
     </dependency>
   </dependencies>
 
-  <build>
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <artifactId>maven-shade-plugin</artifactId>
-          <version>1.2.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-release-plugin</artifactId>
-          <configuration>
-            <tagBase>https://svn.apache.org/repos/asf/maven/ant-tasks/tags</tagBase>
-          </configuration>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-shade-plugin</artifactId>
-        <executions>
-          <execution>
-            <phase>package</phase>
-            <goals>
-              <goal>shade</goal>
-            </goals>
-            <configuration>
-              <createDependencyReducedPom>false</createDependencyReducedPom>
-              <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope>
-              <transformers>
-                <transformer implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer" />
-              </transformers>
-              <artifactSet>
-                <excludes>
-                  <exclude>junit:junit</exclude>
-                  <exclude>jtidy:jtidy</exclude>
-                  <exclude>xml-apis:xml-apis</exclude>
-                  <exclude>ant:ant</exclude>
-                </excludes>
-              </artifactSet>
-              <relocations>
-                <relocation>
-                  <pattern>org.codehaus.plexus.util</pattern>
-                  <shadedPattern>org.apache.maven.artifact.ant.shaded</shadedPattern>
-                  <excludes>
-                    <exclude>org.codehaus.plexus.util.xml.Xpp3Dom</exclude>
-                    <exclude>org.codehaus.plexus.util.xml.pull.*</exclude>
-                  </excludes>
-                </relocation>
-              </relocations>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
+  <!-- <build> -->
+  <!--   <pluginManagement> -->
+  <!--     <plugins> -->
+  <!--       <plugin> -->
+  <!--         <artifactId>maven-shade-plugin</artifactId> -->
+  <!--         <version>1.2.1</version> -->
+  <!--       </plugin> -->
+  <!--       <plugin> -->
+  <!--         <groupId>org.apache.maven.plugins</groupId> -->
+  <!--         <artifactId>maven-release-plugin</artifactId> -->
+  <!--         <configuration> -->
+  <!--           <tagBase>https://svn.apache.org/repos/asf/maven/ant-tasks/tags</tagBase> -->
+  <!--         </configuration> -->
+  <!--       </plugin> -->
+  <!--     </plugins> -->
+  <!--   </pluginManagement> -->
+  <!--   <plugins> -->
+  <!--     <plugin> -->
+  <!--       <groupId>org.apache.maven.plugins</groupId> -->
+  <!--       <artifactId>maven-shade-plugin</artifactId> -->
+  <!--       <executions> -->
+  <!--         <execution> -->
+  <!--           <phase>package</phase> -->
+  <!--           <goals> -->
+  <!--             <goal>shade</goal> -->
+  <!--           </goals> -->
+  <!--           <configuration> -->
+  <!--             <createDependencyReducedPom>false</createDependencyReducedPom> -->
+  <!--             <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope> -->
+  <!--             <transformers> -->
+  <!--               <transformer implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer" /> -->
+  <!--             </transformers> -->
+  <!--             <artifactSet> -->
+  <!--               <excludes> -->
+  <!--                 <exclude>junit:junit</exclude> -->
+  <!--                 <exclude>jtidy:jtidy</exclude> -->
+  <!--                 <exclude>xml-apis:xml-apis</exclude> -->
+  <!--                 <exclude>ant:ant</exclude> -->
+  <!--               </excludes> -->
+  <!--             </artifactSet> -->
+  <!--             <relocations> -->
+  <!--               <relocation> -->
+  <!--                 <pattern>org.codehaus.plexus.util</pattern> -->
+  <!--                 <shadedPattern>org.apache.maven.artifact.ant.shaded</shadedPattern> -->
+  <!--                 <excludes> -->
+  <!--                   <exclude>org.codehaus.plexus.util.xml.Xpp3Dom</exclude> -->
+  <!--                   <exclude>org.codehaus.plexus.util.xml.pull.*</exclude> -->
+  <!--                 </excludes> -->
+  <!--               </relocation> -->
+  <!--             </relocations> -->
+  <!--           </configuration> -->
+  <!--         </execution> -->
+  <!--       </executions> -->
+  <!--     </plugin> -->
+  <!--   </plugins> -->
+  <!-- </build> -->
 
   <profiles>
     <profile>
