Add prebuilts for ECJ 4.4, ASM 5.0.3 and EasyMock 3.3. DO NOT MERGE.

(cherry picked from commit b12544c45a9458f9ad475279fc01f24758850ab4)

(cherry picked from commit 7bdb62d4f0ce6d19ad23b2866b09d9bb68e47fa7)

Change-Id: Icaed0d9b1593d8280ac983d61b2be20a35fa062b
diff --git a/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom b/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom
new file mode 100644
index 0000000..3515d39
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom
@@ -0,0 +1,533 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+  <groupId>org.easymock</groupId>
+  <artifactId>easymock-parent</artifactId>
+  <version>3.3</version>
+  <packaging>pom</packaging>
+  <name>EasyMock Parent</name>
+  <url>http://easymock.org</url>
+  <description>EasyMock Parent is the parent pom of all EasyMock projects</description>
+  <inceptionYear>2010</inceptionYear>
+
+  <prerequisites>
+    <!-- required by android-maven-plugin 3.8.1 -->
+    <maven>3.1.1</maven>
+  </prerequisites>
+
+  <licenses>
+    <license>
+      <name>Apache 2</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <organization>
+    <name><![CDATA[<a href="http://easymock.org/contributors.html" target="_blank">EasyMock contributors</a>]]></name>
+  </organization>
+
+  <developers>
+    <developer>
+      <id>henri</id>
+      <name>Henri Tremblay</name>
+      <url>http://blog.tremblay.pro/</url>
+      <timezone>-5</timezone>
+    </developer>
+  </developers>
+
+  <issueManagement>
+    <system>Codehaus</system>
+    <url>http://jira.codehaus.org/browse/EASYMOCK</url>
+  </issueManagement>
+
+  <mailingLists>
+    <mailingList>
+      <name>User List</name>
+      <subscribe>From Yahoo groups</subscribe>
+      <unsubscribe>easymock-unsubscribe@yahoogroups.com</unsubscribe>
+      <post>easymock@yahoogroups.com</post>
+      <archive>http://tech.groups.yahoo.com/group/easymock/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <properties>
+    <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
+  </properties>
+
+  <scm>
+    <url>https://github.com/easymock/easymock</url>
+    <developerConnection>scm:git:git@github.com:easymock/easymock.git</developerConnection>
+    <connection>scm:git:git://github.com/easymock/easymock.git</connection>
+  </scm>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>4.11</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>build-helper-maven-plugin</artifactId>
+          <version>1.9.1</version>
+        </plugin>
+        <plugin>
+          <groupId>com.mycila.maven-license-plugin</groupId>
+          <artifactId>maven-license-plugin</artifactId>
+          <version>1.10.b1</version>
+          <configuration>
+            <header>${project.basedir}/../header.txt</header>
+            <strictCheck>true</strictCheck>
+            <includes>
+              <!-- Only copyright the java -->
+              <include>src/main/java/**</include>
+              <include>src/test/java/**</include>
+              <include>src/samples/java/**</include>
+            </includes>
+            <properties>
+              <inceptionYear>${project.inceptionYear}</inceptionYear>
+              <year>${year}</year>
+            </properties>
+          </configuration>
+          <executions>
+            <execution>
+              <id>check</id>
+              <goals>
+                <goal>check</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <artifactId>maven-gpg-plugin</artifactId>
+          <version>1.5</version>
+          <executions>
+            <execution>
+              <id>sign-artifacts</id>
+              <phase>verify</phase>
+              <goals>
+                <goal>sign</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>2.5.1</version>
+          <executions>
+            <execution>
+              <id>easymock-bundle</id>
+              <phase>package</phase>
+              <goals>
+                <goal>single</goal>
+              </goals>
+              <configuration>
+                <finalName>${project.artifactId}-${project.version}</finalName>
+                <attach>false</attach>
+                <descriptors>
+                  <descriptor>${basedir}/src/main/assembly/assembly-tests.xml</descriptor>
+                  <descriptor>${basedir}/src/main/assembly/assembly-samples.xml</descriptor>
+                  <descriptor>${basedir}/src/main/assembly/assembly.xml</descriptor>
+                </descriptors>
+              </configuration>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>maven-bundle-plugin</artifactId>
+          <version>2.5.3</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>2.5</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>3.1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <version>2.8.1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-install-plugin</artifactId>
+          <version>2.5.1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>2.5</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.10.1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>2.6</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>3.3</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-source-plugin</artifactId>
+          <version>2.2.1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.17</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>findbugs-maven-plugin</artifactId>
+          <version>3.0.0</version>
+          <configuration>
+            <excludeFilterFile>${basedir}/findbugs-exclude.xml</excludeFilterFile>
+            <xmlOutput>true</xmlOutput>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.jacoco</groupId>
+          <artifactId>jacoco-maven-plugin</artifactId>
+          <version>0.7.1.201405082137</version>
+          <configuration>
+            <rules>
+              <rule>
+                <element>BUNDLE</element>
+                <limits>
+                  <limit>
+                    <counter>COMPLEXITY</counter>
+                    <value>COVEREDRATIO</value>
+                    <minimum>0.8</minimum> <!-- TODO: Push it back to 1.0 -->
+                  </limit>
+                </limits>
+              </rule>
+            </rules>
+          </configuration>
+        </plugin>
+        <!--This plugin configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
+        <plugin>
+          <groupId>org.eclipse.m2e</groupId>
+          <artifactId>lifecycle-mapping</artifactId>
+          <version>1.0.0</version>
+          <configuration>
+            <lifecycleMappingMetadata>
+              <pluginExecutions>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>com.keyboardsamurais.maven</groupId>
+                    <artifactId>maven-timestamp-plugin</artifactId>
+                    <versionRange>[1.0,)</versionRange>
+                    <goals>
+                      <goal>create</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <execute/>
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-remote-resources-plugin</artifactId>
+                    <versionRange>[1.0,)</versionRange>
+                    <goals>
+                      <goal>process</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <execute/>
+                  </action>
+                </pluginExecution>
+              </pluginExecutions>
+            </lifecycleMappingMetadata>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.sonar</groupId>
+          <artifactId>sonar-maven3-plugin</artifactId>
+          <version>4.5</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.5</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
+              </resourceBundles>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>com.keyboardsamurais.maven</groupId>
+        <artifactId>maven-timestamp-plugin</artifactId>
+        <version>1.0</version>
+        <executions>
+          <execution>
+            <id>date</id>
+            <goals>
+              <goal>create</goal>
+            </goals>
+            <configuration>
+              <propertyName>date</propertyName>
+              <timestampPattern>yyyy-MM-dd</timestampPattern>
+            </configuration>
+          </execution>
+          <execution>
+            <id>year</id>
+            <goals>
+              <goal>create</goal>
+            </goals>
+            <configuration>
+              <propertyName>year</propertyName>
+              <timestampPattern>yyyy</timestampPattern>
+            </configuration>
+          </execution>
+          <execution>
+            <id>year-site</id>
+            <phase>pre-site</phase>
+            <goals>
+              <goal>create</goal>
+            </goals>
+            <configuration>
+              <propertyName>year</propertyName>
+              <timestampPattern>yyyy</timestampPattern>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <useDefaultManifestFile>true</useDefaultManifestFile>
+          <archive>
+            <index>true</index>
+            <addMavenDescriptor>false</addMavenDescriptor>
+            <manifest>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+            </manifest>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>versions-maven-plugin</artifactId>
+        <version>2.1</version>
+      </plugin>
+      <plugin>
+        <groupId>com.mycila.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <inherited>false</inherited>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-ssh-external</artifactId>
+        <version>1.0-beta-6</version>
+      </extension>
+    </extensions>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.10.1</version>
+        <configuration>
+          <excludePackageNames>*.internal</excludePackageNames>
+          <bottom><![CDATA[<i>Copyright &#169; ${project.inceptionYear}-${year} ${project.organization.name}. This documentation is provided under the terms of the Apache 2 licence.</i>]]></bottom>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.jacoco</groupId>
+        <artifactId>jacoco-maven-plugin</artifactId>
+        <version>0.7.1.201405082137</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>findbugs-maven-plugin</artifactId>
+        <version>3.0.0</version>
+        <configuration>
+          <excludeFilterFile>${basedir}/findbugs-exclude.xml</excludeFilterFile>
+          <xmlOutput>true</xmlOutput>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <version>2.12</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <version>3.1</version>
+        <configuration>
+          <targetJdk>1.5</targetJdk>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>javancss-maven-plugin</artifactId>
+        <version>2.0</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jdepend-maven-plugin</artifactId>
+        <version>2.0-beta-2</version>
+      </plugin>
+    </plugins>
+  </reporting>
+
+  <modules>
+    <module>easymock</module>
+    <module>easymock-integration</module>
+  </modules>
+
+  <distributionManagement>
+    <repository>
+      <id>sonatype-nexus-staging</id>
+      <name>Nexus Release Repository</name>
+      <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+    </repository>
+    <snapshotRepository>
+      <id>sonatype-nexus-snapshots</id>
+      <name>Sonatype Nexus Snapshots</name>
+      <url>http://oss.sonatype.org/content/repositories/snapshots</url>
+    </snapshotRepository>
+  </distributionManagement>
+
+  <profiles>
+    <profile>
+      <id>fullBuild</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>findbugs-maven-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>findbugs</id>
+                <goals>
+                  <goal>findbugs</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.jacoco</groupId>
+            <artifactId>jacoco-maven-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>default-prepare-agent</id>
+                <goals>
+                  <goal>prepare-agent</goal>
+                </goals>
+              </execution>
+              <execution>
+                <id>default-report</id>
+                <phase>prepare-package</phase>
+                <goals>
+                  <goal>report</goal>
+                </goals>
+              </execution>
+              <execution>
+                <id>default-check</id>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>deployBuild</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-source-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <artifactId>maven-gpg-plugin</artifactId>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>android</id>
+      <modules>
+        <module>easymock-android-tck</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>all</id>
+      <modules>
+        <module>easymock-android-tck</module>
+        <module>easymock-bench</module>
+        <module>easymock-test-deploy</module>
+      </modules>
+    </profile>
+  </profiles>
+
+</project>
diff --git a/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom.md5 b/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom.md5
new file mode 100644
index 0000000..8a51a2d
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom.md5
@@ -0,0 +1 @@
+9a9fb3f139ed522f416086407e9c8f6d
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom.sha1 b/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom.sha1
new file mode 100644
index 0000000..d1d3600
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock-parent/3.3/easymock-parent-3.3.pom.sha1
@@ -0,0 +1 @@
+6fbb1e8d39522668a09281909ec348999b839576
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml b/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml
index 8e09916..ea0e06c 100644
--- a/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml
+++ b/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml
@@ -3,13 +3,14 @@
   <groupId>org.easymock</groupId>
   <artifactId>easymock-parent</artifactId>
   <versioning>
-    <latest>3.2</latest>
-    <release>3.2</release>
+    <latest>3.3</latest>
+    <release>3.3</release>
     <versions>
       <version>3.0</version>
       <version>3.1</version>
       <version>3.2</version>
+      <version>3.3</version>
     </versions>
-    <lastUpdated>20130710233810</lastUpdated>
+    <lastUpdated>20141121050604</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml.md5 b/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml.md5
index 3ba9e35..f87cf75 100644
--- a/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml.md5
+++ b/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml.md5
@@ -1 +1 @@
-d8ee9e3aff3f64bd1ecca68405aa11d5
\ No newline at end of file
+acc049e409e960b1607bca12ee1ccb06
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml.sha1 b/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml.sha1
index 5887f30..7184612 100644
--- a/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml.sha1
+++ b/common/m2/repository/org/easymock/easymock-parent/maven-metadata.xml.sha1
@@ -1 +1 @@
-6a53d1027282e52ba1bcebab85d151943e826a7b
\ No newline at end of file
+f66b133f5122d058bbf50c763dafa7359a198227
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar
new file mode 100644
index 0000000..1bcb829
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar.md5 b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar.md5
new file mode 100644
index 0000000..f673e70
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar.md5
@@ -0,0 +1 @@
+f79aa834ad8e18452ed1d27498dab8dd
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar.sha1 b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar.sha1
new file mode 100644
index 0000000..bc212e8
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3-sources.jar.sha1
@@ -0,0 +1 @@
+6a1ba7985f897ba176513f7a059356dcc60e90c0
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar
new file mode 100644
index 0000000..544273b
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar
Binary files differ
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar.md5 b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar.md5
new file mode 100644
index 0000000..58baf4a
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar.md5
@@ -0,0 +1 @@
+c9074d5567682da2d95d49a127c15dae
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar.sha1 b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar.sha1
new file mode 100644
index 0000000..16b3415
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.jar.sha1
@@ -0,0 +1 @@
+ca67aaed7ba4385fd280863d0d58ab7da31e29e1
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom
new file mode 100644
index 0000000..3fdf24e
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom
@@ -0,0 +1,127 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<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.easymock</groupId>
+    <artifactId>easymock-parent</artifactId>
+    <version>3.3</version>
+  </parent>
+  
+  <artifactId>easymock</artifactId>
+  <packaging>jar</packaging>
+  <name>EasyMock</name>
+  <description>EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly</description>
+  <inceptionYear>2001</inceptionYear>
+
+  <developers>
+    <developer>
+      <id>tammo</id>
+      <name>Tammo Freese</name>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <id>henri</id>
+      <name>Henri Tremblay</name>
+      <url>http://blog.tremblay.pro/</url>
+      <timezone>-5</timezone>
+    </developer>
+  </developers>
+
+  <dependencies>
+    <!-- Used for class mocking -->
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib-nodep</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <!-- Used for class mocking -->
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <!-- Used for class mocking on Android (cglib replacement) -->
+    <dependency>
+        <groupId>com.google.dexmaker</groupId>
+        <artifactId>dexmaker</artifactId>
+        <version>1.1</version>
+        <optional>true</optional>
+    </dependency>     
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <optional>true</optional>
+    </dependency>    
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>generate-test-sources</phase>
+            <goals>
+              <goal>add-test-source</goal>
+            </goals>
+            <configuration>
+              <sources>
+                <source>${basedir}/src/samples/java</source>
+              </sources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+            <Export-Package>org.easymock.internal.*;poweruser=true;mandatory:=poweruser,org.easymock</Export-Package>
+            <Import-Package>net.sf.cglib.core;resolution:=optional,net.sf.cglib.proxy;resolution:=optional,net.sf.cglib.reflect;resolution:=optional,org.easymock,org.easymock.internal;poweruser=true,org.objenesis;resolution:=optional</Import-Package>
+          </instructions>
+        </configuration>
+        <executions>
+          <execution>
+            <id>bundle-manifest</id>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>manifest</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>fullBuild</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>com.mycila.maven-license-plugin</groupId>
+            <artifactId>maven-license-plugin</artifactId>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>deployBuild</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>easymock-bundle</id>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+</project>
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom.md5 b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom.md5
new file mode 100644
index 0000000..9d4115b
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom.md5
@@ -0,0 +1 @@
+4cb16899b0ac45dba860fb5bebc6f01b
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom.sha1 b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom.sha1
new file mode 100644
index 0000000..5a701f0
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/easymock-3.3.pom.sha1
@@ -0,0 +1 @@
+f272153405de93bb79b37325f618ed3c98e8c5ce
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock/maven-metadata.xml b/common/m2/repository/org/easymock/easymock/maven-metadata.xml
index a350fd1..baac127 100644
--- a/common/m2/repository/org/easymock/easymock/maven-metadata.xml
+++ b/common/m2/repository/org/easymock/easymock/maven-metadata.xml
@@ -3,8 +3,8 @@
   <groupId>org.easymock</groupId>
   <artifactId>easymock</artifactId>
   <versioning>
-    <latest>3.2</latest>
-    <release>3.2</release>
+    <latest>3.3</latest>
+    <release>3.3</release>
     <versions>
       <version>2.4</version>
       <version>2.5</version>
@@ -13,7 +13,8 @@
       <version>3.0</version>
       <version>3.1</version>
       <version>3.2</version>
+      <version>3.3</version>
     </versions>
-    <lastUpdated>20130710233810</lastUpdated>
+    <lastUpdated>20141121050603</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/org/easymock/easymock/maven-metadata.xml.md5 b/common/m2/repository/org/easymock/easymock/maven-metadata.xml.md5
index d2722d4..744909d 100644
--- a/common/m2/repository/org/easymock/easymock/maven-metadata.xml.md5
+++ b/common/m2/repository/org/easymock/easymock/maven-metadata.xml.md5
@@ -1 +1 @@
-cf5e6a059d50f499eeb9bda9a4168660
\ No newline at end of file
+f5bd071c7c79d9fe161497f25b260f47
\ No newline at end of file
diff --git a/common/m2/repository/org/easymock/easymock/maven-metadata.xml.sha1 b/common/m2/repository/org/easymock/easymock/maven-metadata.xml.sha1
index 040a1c1..828f257 100644
--- a/common/m2/repository/org/easymock/easymock/maven-metadata.xml.sha1
+++ b/common/m2/repository/org/easymock/easymock/maven-metadata.xml.sha1
@@ -1 +1 @@
-c1b2a3643380ae29555b50864a42aab9758687d8
\ No newline at end of file
+e6e3c63dc2330d87e77dcf9a847eee5c43e52318
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar
new file mode 100644
index 0000000..2e0a34c
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar.md5 b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar.md5
new file mode 100644
index 0000000..f2e1e46
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar.md5
@@ -0,0 +1 @@
+a5f9cc5078dd8f04feb53b6bac0b4e37
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar.sha1 b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar.sha1
new file mode 100644
index 0000000..72d86be
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar.sha1
@@ -0,0 +1 @@
+cae5bc498a10b9244168e64f2455cd6d72d4f907
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar
new file mode 100644
index 0000000..98f82dc
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar
Binary files differ
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar.md5 b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar.md5
new file mode 100644
index 0000000..7fe5ff3
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar.md5
@@ -0,0 +1 @@
+b49191c5255a8f6178259f757bf07b89
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar.sha1 b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar.sha1
new file mode 100644
index 0000000..beddb43
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar.sha1
@@ -0,0 +1 @@
+fe0a961ce7cca03dd3c9b3775c0133229e8231a6
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom
new file mode 100644
index 0000000..01e2625
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/maven-v4_0_0.xsd">
+	<!-- 
+           Originally downloaded here:
+           http://download.eclipse.org/eclipse/downloads/drops4/R-4.4-201406061215/#JDTCORE 
+	-->
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.eclipse.jdt.core.compiler</groupId>
+	<artifactId>ecj</artifactId>
+	<version>4.4</version>
+	<packaging>jar</packaging>
+	<name>Eclipse ECJ</name>
+	<description>Eclipse JDT Core Batch Compiler</description>
+	<url>http://www.eclipse.org/jdt/</url>
+	<properties>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+	</properties>
+	<licenses>
+		<license>
+			<name>Eclipse Public License v1.0</name>
+			<url>http://www.eclipse.org/org/documents/epl-v10.php</url>
+			<distribution>repo</distribution>
+		</license>
+	</licenses>
+	<scm>
+		<url>http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jdt.core/</url>
+		<connection>:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse</connection>
+	</scm>
+	<developers>
+		<!-- I didn't develop ECJ, but the Central Sync Requirements mandate a developer in the POM:
+			https://docs.sonatype.org/display/Repository/Central+Sync+Requirements
+		-->
+		<developer>
+			<name>Ralph Schaer</name>
+			<email>ralphschaer@gmail.com</email>
+		</developer>
+	</developers>
+	
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.ant</groupId>
+			<artifactId>ant</artifactId>
+			<version>1.9.4</version>
+			<optional>true</optional>
+		</dependency>
+	</dependencies>	
+	
+	<build>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+		  <version>2.9.1</version>
+          <configuration>
+            <additionalparam>-Xdoclint:none</additionalparam>
+          </configuration>
+        </plugin>
+      </plugins>	
+	</build>
+	
+</project>
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom.md5 b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom.md5
new file mode 100644
index 0000000..d53baeb
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom.md5
@@ -0,0 +1 @@
+b8036bfaa8b39a267509657de7296cab
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom.sha1 b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom.sha1
new file mode 100644
index 0000000..5e58d1a
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom.sha1
@@ -0,0 +1 @@
+9dff19e8900783b7e6c520c3e1b44e09523cb0a0
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar
new file mode 100644
index 0000000..57d6f37
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar.md5 b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar.md5
new file mode 100644
index 0000000..d8a4e88
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar.md5
@@ -0,0 +1 @@
+26fb682358ad4ba4deab6cabc1b99219
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar.sha1 b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar.sha1
new file mode 100644
index 0000000..9b58ac0
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar.sha1
@@ -0,0 +1 @@
+f0f24f6666c1a15c7e202e91610476bd4ce59368
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar
new file mode 100644
index 0000000..8b73cf0
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar
Binary files differ
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar.md5 b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar.md5
new file mode 100644
index 0000000..25d8ee4
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar.md5
@@ -0,0 +1 @@
+f4bd5c076645f8004663cc35044fdb32
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar.sha1 b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar.sha1
new file mode 100644
index 0000000..cd44597
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar.sha1
@@ -0,0 +1 @@
+c7126aded0e8e13fed5f913559a0dd7b770a10f3
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom
new file mode 100644
index 0000000..5993b8d
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom
@@ -0,0 +1,51 @@
+<!--
+ ! ASM: a very small and fast Java bytecode manipulation framework
+ ! Copyright (c) 2000-2011 INRIA, France Telecom
+ ! All rights reserved.
+ !
+ ! Redistribution and use in source and binary forms, with or without
+ ! modification, are permitted provided that the following conditions
+ ! are met:
+ ! 1. Redistributions of source code must retain the above copyright
+ !    notice, this list of conditions and the following disclaimer.
+ ! 2. Redistributions in binary form must reproduce the above copyright
+ !    notice, this list of conditions and the following disclaimer in the
+ !    documentation and/or other materials provided with the distribution.
+ ! 3. Neither the name of the copyright holders nor the names of its
+ !    contributors may be used to endorse or promote products derived from
+ !    this software without specific prior written permission.
+ !
+ ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ ! THE POSSIBILITY OF SUCH DAMAGE.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>org.ow2.asm</groupId>
+    <version>5.0.3</version>
+  </parent>
+
+  <name>ASM Analysis</name>
+  <artifactId>asm-analysis</artifactId>
+  <packaging>jar</packaging>
+  
+  <dependencies>
+    <dependency>
+      <artifactId>asm-tree</artifactId>
+      <groupId>org.ow2.asm</groupId>
+    </dependency>
+  </dependencies>
+
+</project>
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom.md5 b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom.md5
new file mode 100644
index 0000000..c352c43
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom.md5
@@ -0,0 +1 @@
+500ba10b027d289b2fc0407859902504
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom.sha1 b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom.sha1
new file mode 100644
index 0000000..7fd7452
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom.sha1
@@ -0,0 +1 @@
+2270e3099f178e9562a92c6eb27a7ad12e3fa850
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom b/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom
new file mode 100644
index 0000000..4251bc3
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom
@@ -0,0 +1,163 @@
+<!--
+ ! ASM: a very small and fast Java bytecode manipulation framework
+ ! Copyright (c) 2000-2011 INRIA, France Telecom
+ ! All rights reserved.
+ !
+ ! Redistribution and use in source and binary forms, with or without
+ ! modification, are permitted provided that the following conditions
+ ! are met:
+ ! 1. Redistributions of source code must retain the above copyright
+ !    notice, this list of conditions and the following disclaimer.
+ ! 2. Redistributions in binary form must reproduce the above copyright
+ !    notice, this list of conditions and the following disclaimer in the
+ !    documentation and/or other materials provided with the distribution.
+ ! 3. Neither the name of the copyright holders nor the names of its
+ !    contributors may be used to endorse or promote products derived from
+ !    this software without specific prior written permission.
+ !
+ ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ ! THE POSSIBILITY OF SUCH DAMAGE.
+-->
+
+<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/maven-v4_0_0.xsd">
+
+  <parent>
+    <artifactId>ow2</artifactId>
+    <groupId>org.ow2</groupId>
+    <version>1.3</version>
+  </parent>
+ 
+  <modelVersion>4.0.0</modelVersion>
+
+  <artifactId>asm-parent</artifactId>
+  <groupId>org.ow2.asm</groupId>
+  <version>5.0.3</version>
+  <packaging>pom</packaging>
+
+  <name>ASM</name>
+  <description>A very small and fast Java bytecode manipulation framework</description>
+  <url>http://asm.objectweb.org/</url>
+  
+  <organization>
+    <name>ObjectWeb</name>
+    <url>http://www.objectweb.org/</url>
+  </organization>
+  <inceptionYear>2000</inceptionYear>
+  
+  <licenses>
+    <license>
+      <name>BSD</name>
+      <url>http://asm.objectweb.org/license.html</url>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <name>Eric Bruneton</name>
+      <id>ebruneton</id>
+      <email>ebruneton@free.fr</email>
+      <roles>
+        <role>Creator</role>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Eugene Kuleshov</name>
+      <id>eu</id>
+      <email>eu@javatx.org</email>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <name>Remi Forax</name>
+      <id>forax</id>
+      <email>forax@univ-mlv.fr</email>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
+  </developers>
+
+  <scm>
+    <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/asm/trunk</connection>
+    <developerConnection>scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/asm/trunk</developerConnection>
+    <url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/asm/trunk/</url>
+  </scm>
+  
+  <issueManagement>
+    <url>http://forge.objectweb.org/tracker/?group_id=23</url>
+  </issueManagement>
+
+  <dependencyManagement>
+    <dependencies>
+
+      <dependency>
+        <artifactId>asm</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-tree</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-analysis</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-commons</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-util</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
+        <artifactId>asm-xml</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+
+  <mailingLists>
+    <mailingList>
+      <name>ASM Users List</name>
+      <subscribe>sympa@objectweb.org?subject=subscribe%20asm</subscribe>
+      <unsubscribe>sympa@objectweb.org?subject=unsubscribe%20asm</unsubscribe>
+      <post>asm@objectweb.org</post>
+      <archive>http://www.objectweb.org/wws/arc/asm</archive>
+    </mailingList>
+    <mailingList>
+      <name>ASM Team List</name>
+      <subscribe>sympa@objectweb.org?subject=subscribe%20asm-team</subscribe>
+      <unsubscribe>sympa@objectweb.org?subject=unsubscribe%20asm-team</unsubscribe>
+      <post>asm-team@objectweb.org</post>
+      <archive>http://www.objectweb.org/wws/arc/asm-team</archive>
+    </mailingList>
+  </mailingLists>
+
+</project>
diff --git a/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom.md5 b/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom.md5
new file mode 100644
index 0000000..d3c4cf4
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom.md5
@@ -0,0 +1 @@
+e0ef75ada6aa6a9c47498fa357120b26
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom.sha1 b/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom.sha1
new file mode 100644
index 0000000..55b1631
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom.sha1
@@ -0,0 +1 @@
+f2b915adcf47fab0e17bccf47390aa206eba7937
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar
new file mode 100644
index 0000000..57d6f37
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar.md5 b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar.md5
new file mode 100644
index 0000000..d8a4e88
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar.md5
@@ -0,0 +1 @@
+26fb682358ad4ba4deab6cabc1b99219
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar.sha1 b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar.sha1
new file mode 100644
index 0000000..9b58ac0
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar.sha1
@@ -0,0 +1 @@
+f0f24f6666c1a15c7e202e91610476bd4ce59368
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar
new file mode 100644
index 0000000..e7eae53
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar
Binary files differ
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar.md5 b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar.md5
new file mode 100644
index 0000000..8d060e0
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar.md5
@@ -0,0 +1 @@
+94abc9b0126e1ec2c12625dfce54e32e
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar.sha1 b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar.sha1
new file mode 100644
index 0000000..1ffecfc
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar.sha1
@@ -0,0 +1 @@
+287749b48ba7162fb67c93a026d690b29f410bed
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom
new file mode 100644
index 0000000..bc83f18
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom
@@ -0,0 +1,51 @@
+<!--
+ ! ASM: a very small and fast Java bytecode manipulation framework
+ ! Copyright (c) 2000-2011 INRIA, France Telecom
+ ! All rights reserved.
+ !
+ ! Redistribution and use in source and binary forms, with or without
+ ! modification, are permitted provided that the following conditions
+ ! are met:
+ ! 1. Redistributions of source code must retain the above copyright
+ !    notice, this list of conditions and the following disclaimer.
+ ! 2. Redistributions in binary form must reproduce the above copyright
+ !    notice, this list of conditions and the following disclaimer in the
+ !    documentation and/or other materials provided with the distribution.
+ ! 3. Neither the name of the copyright holders nor the names of its
+ !    contributors may be used to endorse or promote products derived from
+ !    this software without specific prior written permission.
+ !
+ ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ ! THE POSSIBILITY OF SUCH DAMAGE.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>org.ow2.asm</groupId>
+    <version>5.0.3</version>
+  </parent>
+
+  <name>ASM Tree</name>
+  <artifactId>asm-tree</artifactId>
+  <packaging>jar</packaging>
+  
+  <dependencies>
+    <dependency>
+      <artifactId>asm</artifactId>
+      <groupId>org.ow2.asm</groupId>
+    </dependency>
+  </dependencies>
+
+</project>
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom.md5 b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom.md5
new file mode 100644
index 0000000..28162d4
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom.md5
@@ -0,0 +1 @@
+09d4805b36ac6e78d7d23ca286dd87e1
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom.sha1 b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom.sha1
new file mode 100644
index 0000000..fee3159
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom.sha1
@@ -0,0 +1 @@
+67e01f0d7339cdeaf709be24a7c333f396005e8e
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar
new file mode 100644
index 0000000..57d6f37
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar.md5 b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar.md5
new file mode 100644
index 0000000..d8a4e88
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar.md5
@@ -0,0 +1 @@
+26fb682358ad4ba4deab6cabc1b99219
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar.sha1 b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar.sha1
new file mode 100644
index 0000000..9b58ac0
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar.sha1
@@ -0,0 +1 @@
+f0f24f6666c1a15c7e202e91610476bd4ce59368
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar
new file mode 100644
index 0000000..573535b
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar
Binary files differ
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar.md5 b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar.md5
new file mode 100644
index 0000000..ffde601
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar.md5
@@ -0,0 +1 @@
+ccebee99fb8cdd50e1967680a2eac0ba
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar.sha1 b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar.sha1
new file mode 100644
index 0000000..a20eb93
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar.sha1
@@ -0,0 +1 @@
+dcc2193db20e19e1feca8b1240dbbc4e190824fa
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom
new file mode 100644
index 0000000..3fe9311
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom
@@ -0,0 +1,44 @@
+<!--
+ ! ASM: a very small and fast Java bytecode manipulation framework
+ ! Copyright (c) 2000-2011 INRIA, France Telecom
+ ! All rights reserved.
+ !
+ ! Redistribution and use in source and binary forms, with or without
+ ! modification, are permitted provided that the following conditions
+ ! are met:
+ ! 1. Redistributions of source code must retain the above copyright
+ !    notice, this list of conditions and the following disclaimer.
+ ! 2. Redistributions in binary form must reproduce the above copyright
+ !    notice, this list of conditions and the following disclaimer in the
+ !    documentation and/or other materials provided with the distribution.
+ ! 3. Neither the name of the copyright holders nor the names of its
+ !    contributors may be used to endorse or promote products derived from
+ !    this software without specific prior written permission.
+ !
+ ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ ! THE POSSIBILITY OF SUCH DAMAGE.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>org.ow2.asm</groupId>
+    <version>5.0.3</version>
+  </parent>
+
+  <name>ASM Core</name>
+  <artifactId>asm</artifactId>
+  <packaging>jar</packaging>
+  
+</project>
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom.md5 b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom.md5
new file mode 100644
index 0000000..7b24348
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom.md5
@@ -0,0 +1 @@
+fb8555a91ee37ee839a652223e570740
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom.sha1 b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom.sha1
new file mode 100644
index 0000000..b386b02
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom.sha1
@@ -0,0 +1 @@
+7d9570aceff0131a35a87d37b53452be33cf3cd9
\ No newline at end of file