merge in ub-support-test-release history after reset to ub-support-test
diff --git a/common/builder-model/PREBUILT b/common/builder-model/PREBUILT
index 87b8fee..583d194 100644
--- a/common/builder-model/PREBUILT
+++ b/common/builder-model/PREBUILT
@@ -1 +1 @@
-The jar is built from the sources in tools/base @ ec487df803bf86b52c6e1a743f074b36d76fa726
+The jar is built from the sources in tools/base @ 4a3f1d421a72fefba448ae0e09b6c3216ea7dd68
diff --git a/common/builder-model/builder-model-1.1.0-rc1-sources.jar b/common/builder-model/builder-model-1.1.0-rc1-sources.jar
index 4da15ae..2665079 100644
--- a/common/builder-model/builder-model-1.1.0-rc1-sources.jar
+++ b/common/builder-model/builder-model-1.1.0-rc1-sources.jar
Binary files differ
diff --git a/common/builder-model/builder-model-1.1.0-rc1.jar b/common/builder-model/builder-model-1.1.0-rc1.jar
index 03d640d..45bc0be 100644
--- a/common/builder-model/builder-model-1.1.0-rc1.jar
+++ b/common/builder-model/builder-model-1.1.0-rc1.jar
Binary files differ
diff --git a/common/builder-model/builder-model-1.3.0-alpha1-sources.jar b/common/builder-model/builder-model-1.3.0-alpha1-sources.jar
new file mode 100644
index 0000000..0a99098
--- /dev/null
+++ b/common/builder-model/builder-model-1.3.0-alpha1-sources.jar
Binary files differ
diff --git a/common/builder-model/builder-model-1.3.0-alpha1.jar b/common/builder-model/builder-model-1.3.0-alpha1.jar
new file mode 100644
index 0000000..25f9080
--- /dev/null
+++ b/common/builder-model/builder-model-1.3.0-alpha1.jar
Binary files differ
diff --git a/common/google-api-java-client/1.20.0/HOWTO.txt b/common/google-api-java-client/1.20.0/HOWTO.txt
new file mode 100644
index 0000000..6e914e2
--- /dev/null
+++ b/common/google-api-java-client/1.20.0/HOWTO.txt
@@ -0,0 +1,95 @@
+How to recreate this JAR
+
+=========================================================
+
+Download the latest google-api-java-client library from 
+https://developers.google.com/api-client-library/java/google-api-java-client/download
+
+Download jarjar from 
+https://code.google.com/p/jarjar/
+
+Install Apache Ant (if not already installed)
+
+=========================================================
+
+Create the following directory structure
+
+base/
+ |-- jars/
+ |-- lib/
+ \-- build.xml
+
+=========================================================
+
+Put the jarjar-<version>.jar in base/lib
+
+Extract and place the .jar files from the client lib you want in base/jars
+for 1.20.0 we
+
+INCLUDED
++ commons-logging-1.1.1.jar
++ google-api-client-1.20.0.jar
++ google-api-client-jackson2-1.20.0.jar
++ google-api-client-java6-1.20.0.jar
++ google-http-client-1.20.0.jar
++ google-http-client-jackson2-1.20.0.jar
++ google-oauth-client-1.20.0.jar
++ google-oauth-client-java6-1.20.0.jar
++ google-oauth-client-jetty-1.20.0.jar
++ httpclient-4.0.1.jar
++ httpcore-4.0.1.jar
++ jackson-core-2.1.3.jar
++ jetty-6.1.26.jar
++ jetty-util-6.1.26.jar
++ jsr305-1.3.9.jar
+
+and EXCLUDED
+- google-api-client-android-1.20.0.jar
+- google-api-client-appengine-1.20.0.jar
+- google-api-client-gson-1.20.0.jar
+- google-api-client-protobuf-1.20.0.jar
+- google-api-client-servlet-1.20.0.jar
+- google-api-client-xml-1.20.0.jar
+- google-http-client-android-1.20.0.jar
+- google-http-client-appengine-1.20.0.jar
+- google-http-client-gson-1.20.0.jar
+- google-http-client-jackson-1.20.0.jar
+- google-http-client-jdo-1.20.0.jar
+- google-http-client-protobuf-1.20.0.jar
+- google-http-client-xml-1.20.0.jar
+- google-oauth-client-appengine-1.20.0.jar
+- google-oauth-client-servlet-1.20.0.jar
+- guava-jdk5-13.0.jar
+- gson-2.1.jar
+- jackson-core-asl-1.9.11.jar
+- jdo2-api-2.3-eb.jar
+- protobuf-java-2.4.1.jar
+- transaction-api-1.1.jar
+- xpp3-1.1.4c.jar
+
+=========================================================
+
+create a build.xml 
+
+<project name="gapiRepackage">
+    <target name="jar">
+        <taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpath="lib/jarjar-1.4.jar"/>
+        <jarjar jarfile="dist/google-api-java-client-min-repackaged-1.20.0.jar">
+            <zipgroupfileset dir="jars" includes="*.jar"/>
+            <rule pattern="org.apache.**" result="com.google.api.client.repackaged.@0"/>
+            <rule pattern="com.google.gson.**" result="com.google.api.client.repackaged.@0"/>
+            <rule pattern="com.google.protobuf.**" result="com.google.api.client.repackaged.@0"/>
+            <rule pattern="com.fasterxml.**" result="com.google.api.client.repackaged.@0"/>
+            <rule pattern="org.codehaus.**" result="com.google.api.client.repackaged.@0"/>
+            <rule pattern="org.mortbay.**" result="com.google.api.client.repackaged.@0"/>
+            <rule pattern="org.xmlpull.**" result="com.google.api.client.repackaged.@0"/>
+            <rule pattern="javax.annotation.**" result="com.google.api.client.repackaged.@0"/>
+            <rule pattern="javax.xml.**" result="com.google.api.client.repackaged.@0"/>
+        </jarjar>
+    </target>
+</project>
+
+=========================================================
+
+run "ant jar" to create a combined, reduced, repackaged jar.
+it will be found as base/dist/google-api-java-client-min-repackaged-1.20.0.jar
diff --git a/common/google-api-java-client/1.20.0/LICENSE.txt b/common/google-api-java-client/1.20.0/LICENSE.txt
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/common/google-api-java-client/1.20.0/LICENSE.txt
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/common/google-api-java-client/1.20.0/NOTICE.txt b/common/google-api-java-client/1.20.0/NOTICE.txt
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/common/google-api-java-client/1.20.0/NOTICE.txt
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/common/google-api-java-client/1.20.0/README.txt b/common/google-api-java-client/1.20.0/README.txt
new file mode 100644
index 0000000..45ee587
--- /dev/null
+++ b/common/google-api-java-client/1.20.0/README.txt
@@ -0,0 +1,58 @@
+Google Api Java Client libraries (LICENSE.txt)
+Reduced and Repackaged with JarJar
+
+https://developers.google.com/api-client-library/java/google-api-java-client/download
+
+========================================
+Included Jars
+========================================
+commons-logging-1.1.1.jar
+google-api-client-1.20.0.jar
+google-api-client-jackson2-1.20.0.jar
+google-api-client-java6-1.20.0.jar
+google-http-client-1.20.0.jar
+google-http-client-jackson2-1.20.0.jar
+google-oauth-client-1.20.0.jar
+google-oauth-client-java6-1.20.0.jar
+google-oauth-client-jetty-1.20.0.jar
+httpclient-4.0.1.jar
+httpcore-4.0.1.jar
+jackson-core-2.1.3.jar
+jetty-6.1.26.jar
+jetty-util-6.1.26.jar
+jsr305-1.3.9.jar
+
+========================================
+Included jars with modified packages
+========================================
+Package name prefixed with "com.google.api.client.repackaged"
+
+commons-logging-1.1.1.jar
+jackson
+httpclient-4.0.1.jar
+httpcore-4.0.1.jar
+jackson-core-2.1.3.jar
+jetty-6.1.26.jar
+jetty-util-6.1.26.jar
+jsr305-1.3.9.jar
+
+========================================
+Licensing information
+========================================
+Apache Software License, Version 2.0 (NOTICE.txt)
+- commons-logging-1.1.1.jar
+- google-api-client-1.20.0.jar
+- google-api-client-gson-1.20.0.jar
+- google-api-client-jackson2-1.20.0.jar
+- google-api-client-java6-1.20.0.jar
+- google-http-client-1.20.0.jar
+- google-http-client-jackson2-1.20.0.jar
+- google-oauth-client-1.20.0.jar
+- google-oauth-client-java6-1.20.0.jar
+- google-oauth-client-jetty-1.20.0.jar
+- httpclient-4.0.1.jar
+- httpcore-4.0.1.jar
+- jackson-core-2.1.3.jar
+- jetty-6.1.26.jar
+- jetty-util-6.1.26.jar
+- jsr305-1.3.9.jar
diff --git a/common/google-api-java-client/1.20.0/google-api-java-client-min-repackaged-1.20.0.jar b/common/google-api-java-client/1.20.0/google-api-java-client-min-repackaged-1.20.0.jar
new file mode 100644
index 0000000..2288313
--- /dev/null
+++ b/common/google-api-java-client/1.20.0/google-api-java-client-min-repackaged-1.20.0.jar
Binary files differ
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/NOTICE b/common/m2/repository/cglib/cglib-nodep/3.1/NOTICE
new file mode 100644
index 0000000..157b1d0
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/NOTICE
@@ -0,0 +1,204 @@
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar
new file mode 100644
index 0000000..f2a7080
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar
Binary files differ
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar.md5 b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar.md5
new file mode 100644
index 0000000..2616ec3
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar.md5
@@ -0,0 +1 @@
+d050c54409bcd21d2dd4703879b8c3b2
\ No newline at end of file
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar.sha1 b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar.sha1
new file mode 100644
index 0000000..260bfbb
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1-sources.jar.sha1
@@ -0,0 +1 @@
+e651cbd93cb1c2155afdea6675c50e567f7ce91e
\ No newline at end of file
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar
new file mode 100644
index 0000000..c0ac121
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar
Binary files differ
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar.md5 b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar.md5
new file mode 100644
index 0000000..b57f067
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar.md5
@@ -0,0 +1 @@
+92498b62ac5d9cbdf18b147f52cf6ecb
\ No newline at end of file
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar.sha1 b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar.sha1
new file mode 100644
index 0000000..5236932
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.jar.sha1
@@ -0,0 +1 @@
+aa83efbd1aedc4f26bdf00e7ea78191483f2c9b3
\ No newline at end of file
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom
new file mode 100644
index 0000000..00b3d02
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom
@@ -0,0 +1,43 @@
+<?xml version="1.0"?>
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>cglib</groupId>
+  <artifactId>cglib-nodep</artifactId>
+  <name>Code Generation Library</name>
+  <version>3.1</version>
+  <url>http://cglib.sourceforge.net/</url>
+  <description>Code generation library with shaded ASM dependecies</description>
+  <licenses>
+    <license>
+            <name>ASF 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <scm>
+    <connection>scm:cvs:pserver:anonymous@cglib.cvs.sourceforge.net:/cvsroot/cglib:cglib</connection>
+    <url>http://cglib.cvs.sourceforge.net/cglib</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.6.2</version>
+      <optional>true</optional>
+    </dependency>
+  </dependencies>
+  <developers>
+    <developer>
+      <id>baliuka</id>
+      <name>Juozas Baliuka</name>
+    </developer>
+    <developer>
+      <id>herbyderby</id>
+      <name>Chris Nokleberg</name>
+    </developer>
+    <developer>
+      <id>sameb</id>
+      <name>Sam Berlin</name>
+    </developer>
+  </developers>
+</project>
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom.md5 b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom.md5
new file mode 100644
index 0000000..557d19b
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom.md5
@@ -0,0 +1 @@
+41cbb7bc608af67c661ebbd1ac936e23
\ No newline at end of file
diff --git a/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom.sha1 b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom.sha1
new file mode 100644
index 0000000..83a1067
--- /dev/null
+++ b/common/m2/repository/cglib/cglib-nodep/3.1/cglib-nodep-3.1.pom.sha1
@@ -0,0 +1 @@
+3cde89b0bf0207b5bb6621f6b00c811f691121ba
\ No newline at end of file
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/NOTICE b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/NOTICE
new file mode 100644
index 0000000..8d28df4
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/NOTICE
@@ -0,0 +1,19 @@
+Copyright (C) 2010-2011 The Project Lombok Authors.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-javadoc.jar b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-javadoc.jar
new file mode 100644
index 0000000..862a097
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-javadoc.jar
Binary files differ
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar
new file mode 100644
index 0000000..2c6c455
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar
Binary files differ
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar.md5 b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar.md5
new file mode 100644
index 0000000..4278564
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar.md5
@@ -0,0 +1 @@
+aa0dbd030fd75191f26df69e0bdad839
\ No newline at end of file
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar.sha1 b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar.sha1
new file mode 100644
index 0000000..c263d71
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar.sha1
@@ -0,0 +1 @@
+b4f90836c51edefa4a38c97877b709ed2c15ee32
\ No newline at end of file
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar
new file mode 100644
index 0000000..4b76285
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar
Binary files differ
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar.md5 b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar.md5
new file mode 100644
index 0000000..3889dbc
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar.md5
@@ -0,0 +1 @@
+da854f1c971da5e361ecc6fa7b8d0649
\ No newline at end of file
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar.sha1 b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar.sha1
new file mode 100644
index 0000000..3d4958d
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar.sha1
@@ -0,0 +1 @@
+0528b6f8bde3157f17530aa366631f2aad2a6cf9
\ No newline at end of file
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom
new file mode 100644
index 0000000..7941b5d
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom
@@ -0,0 +1,53 @@
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>com.android.tools.external.lombok</groupId>
+    <artifactId>lombok-ast</artifactId>
+    <version>0.2.3</version>
+    <packaging>jar</packaging>
+    <name>Lombok - AST fork</name>
+    <url>http://projectlombok.org/</url>
+    <description>This is a very small fork of lombok.ast as some Android tools needed a few modifications. The normal repository for lombok.ast is here https://github.com/rzwitserloot/lombok.ast and our changes for 0.2.3 are in this pull request: https://github.com/rzwitserloot/lombok.ast/pull/8</description>
+    <licenses>
+        <license>
+            <name>The MIT License</name>
+            <url>http://projectlombok.org/LICENSE</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    <scm>
+        <connection>git://android.googlesource.com/platform/prebuilts/tools.git</connection>
+        <url>https://android.googlesource.com/platform/prebuilts/tools</url>
+    </scm>
+    <issueManagement>
+        <system>Google Code</system>
+        <url>http://code.google.com/p/projectlombok/issues</url>
+    </issueManagement>
+    <dependencies>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+            <version>17.0</version>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+   <developers>
+        <developer>
+            <id>rzwitserloot</id>
+            <name>Reinier Zwitserloot</name>
+            <email>reinier@projectlombok.org</email>
+            <url>http://zwitserloot.com</url>
+            <timezone>+1</timezone>
+        </developer>
+        <developer>
+            <id>rspilker</id>
+            <name>Roel Spilker</name>
+            <email>roel@projectlombok.org</email>
+            <timezone>+1</timezone>
+        </developer>
+        <developer>
+            <id>rgrootjans</id>
+            <name>Robbert Jan Grootjans</name>
+            <timezone>+1</timezone>
+        </developer>
+    </developers>
+</project>
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom.md5 b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom.md5
new file mode 100644
index 0000000..25f196a
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom.md5
@@ -0,0 +1 @@
+5f2d09902dd809970b4555a281eeaa28
\ No newline at end of file
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom.sha1 b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom.sha1
new file mode 100644
index 0000000..47ae622
--- /dev/null
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom.sha1
@@ -0,0 +1 @@
+ac2e013f1621e1456de3ac77aeae0437237c736c
\ No newline at end of file
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml
index 3a0c11c..2bf84ff 100644
--- a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml
@@ -3,12 +3,13 @@
   <groupId>com.android.tools.external.lombok</groupId>
   <artifactId>lombok-ast</artifactId>
   <versioning>
-    <latest>0.2.2</latest>
-    <release>0.2.2</release>
+    <latest>0.2.3</latest>
+    <release>0.2.3</release>
     <versions>
       <version>0.2.1</version>
       <version>0.2.2</version>
+      <version>0.2.3</version>
     </versions>
-    <lastUpdated>20140103230701</lastUpdated>
+    <lastUpdated>20141230131713</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml.md5 b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml.md5
index be2f8f4..5a6c472 100644
--- a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml.md5
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml.md5
@@ -1 +1 @@
-ea9e39e6800d1510d957ee6315e28350
\ No newline at end of file
+8fee914976a423db0c20a9469fbe51a5
\ No newline at end of file
diff --git a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml.sha1 b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml.sha1
index 4a00aeb..a756151 100644
--- a/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml.sha1
+++ b/common/m2/repository/com/android/tools/external/lombok/lombok-ast/maven-metadata.xml.sha1
@@ -1 +1 @@
-2e8cc56ad79ecc4b38448d10112355693a782149
\ No newline at end of file
+95e18fb8a500c2f829e635863ce81b90690aa9e9
\ No newline at end of file
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/NOTICE b/common/m2/repository/com/google/code/gson/gson/2.2.4/NOTICE
new file mode 100644
index 0000000..b9ba188
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/NOTICE
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright 2008-2011 Google Inc.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar
new file mode 100644
index 0000000..74d3cc5
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar
Binary files differ
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar.md5 b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar.md5
new file mode 100644
index 0000000..dbb922e
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar.md5
@@ -0,0 +1 @@
+1ff6437ccdf5a83f3596da78b7f6118e
\ No newline at end of file
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar.sha1 b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar.sha1
new file mode 100644
index 0000000..03381c9
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar.sha1
@@ -0,0 +1 @@
+a6dc5db8a12928e583bd3f23e72d3ab611ecd58f
\ No newline at end of file
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar
new file mode 100644
index 0000000..75fe27c
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar
Binary files differ
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar.md5 b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar.md5
new file mode 100644
index 0000000..76bda15
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar.md5
@@ -0,0 +1 @@
+2f54fc24807a4cad7297012dd8cebf3d
\ No newline at end of file
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar.sha1 b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar.sha1
new file mode 100644
index 0000000..75e1335
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar.sha1
@@ -0,0 +1 @@
+a60a5e993c98c864010053cb901b7eab25306568
\ No newline at end of file
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom
new file mode 100644
index 0000000..dd74c10
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom
@@ -0,0 +1,218 @@
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.google.code.gson</groupId>
+  <artifactId>gson</artifactId>
+  <packaging>jar</packaging>
+  <version>2.2.4</version>
+  <inceptionYear>2008</inceptionYear>
+  <name>Gson</name>
+  <parent>
+    <groupId>org.sonatype.oss</groupId>
+    <artifactId>oss-parent</artifactId>
+    <version>7</version>
+  </parent>
+  <url>http://code.google.com/p/google-gson/</url>
+  <description>Google Gson library</description>
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <scm>
+    <connection>scm:svn:http://google-gson.googlecode.com/svn/trunk/gson</connection>
+    <developerConnection>scm:svn:https://google-gson.googlecode.com/svn/trunk/gson</developerConnection>
+    <url>http://google-gson.googlecode.com/svn/trunk/gson</url>
+  </scm>
+  <issueManagement>
+    <system>Google Code Issue Tracking</system>
+    <url>http://code.google.com/p/google-gson/issues/list</url>
+  </issueManagement>
+  <organization>
+    <name>Google, Inc.</name>
+    <url>http://www.google.com</url>
+  </organization>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <profiles>
+    <!-- Activate PGP signing only when performing a release -->
+    <profile>
+      <id>release-sign-artifacts</id>
+      <activation>
+        <property>
+          <name>performRelease</name>
+          <value>true</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.4</version>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.1</version>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>2.4</version>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <archive>
+            <addMavenDescriptor>false</addMavenDescriptor>
+            <manifestEntries>
+              <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
+              <Export-Package><![CDATA[com.google.gson;version=${project.version}, com.google.gson.annotations;version=${project.version}, com.google.gson.reflect;version=${project.version}, com.google.gson.stream;version=${project.version}, com.google.gson.internal;version=${project.version}, com.google.gson.internal.bind;version=${project.version}]]></Export-Package>
+              <Bundle-Version>${project.version}</Bundle-Version>
+              <Bundle-ContactAddress>http://code.google.com/p/google-gson/</Bundle-ContactAddress>
+              <Bundle-Vendor>Google Gson Project</Bundle-Vendor>
+              <Bundle-Name>${project.name}</Bundle-Name>
+              <Bundle-Description>${project.description}</Bundle-Description>
+              <Bundle-ClassPath>.</Bundle-ClassPath>
+              <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
+              <Bundle-SymbolicName>com.google.gson</Bundle-SymbolicName>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+       <!-- TODO(inder): add manifest entry for maven group, artifact, and classifier ids -->
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-source-plugin</artifactId>
+         <version>2.2.1</version>
+         <executions>
+           <execution>
+             <id>attach-sources</id>
+             <phase>verify</phase>
+             <goals>
+               <goal>jar</goal>
+             </goals>
+           </execution>
+         </executions>
+         <configuration>
+           <archive>
+             <manifestEntries>
+               <Eclipse-SourceBundle>com.google.gson;version="${project.version}"</Eclipse-SourceBundle>
+               <Bundle-SymbolicName>com.google.gson.source</Bundle-SymbolicName>
+               <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
+               <Bundle-Version>${project.version}</Bundle-Version>
+             </manifestEntries>
+           </archive>
+         </configuration>
+       </plugin>
+       <plugin>
+         <!-- TODO(inder): add manifest entry for maven group, artifact, and classifier ids -->
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-javadoc-plugin</artifactId>
+         <version>2.9</version>
+         <executions>
+           <execution>
+             <id>attach-javadocs</id>
+             <goals>
+               <goal>jar</goal>
+             </goals>
+           </execution>
+         </executions>
+         <configuration>
+           <includePackageNames>com.google.gson</includePackageNames>
+           <excludePackageNames>com.google.gson.internal:com.google.gson.internal.bind</excludePackageNames>
+            <links>
+             <link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
+           </links>
+           <version>true</version>
+           <show>protected</show>
+         </configuration>
+       </plugin>
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-eclipse-plugin</artifactId>
+         <version>2.9</version>
+         <configuration>
+           <downloadSources>true</downloadSources>
+           <downloadJavadocs>true</downloadJavadocs>
+           <workspace>
+             ../eclipse-ws/
+           </workspace>
+           <workspaceCodeStylesURL>
+             file:///${basedir}/../lib/gson-formatting-styles.xml
+           </workspaceCodeStylesURL>
+         </configuration>
+       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <!-- version>2.4.1</version -->
+        <configuration>
+          <arguments>-DenableCiProfile=true</arguments>
+          <tagBase>https://google-gson.googlecode.com/svn/tags</tagBase>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.4</version>
+        <configuration>
+          <descriptor>assembly-descriptor.xml</descriptor>
+          <finalName>google-gson-${project.version}</finalName>
+          <outputDirectory>target/dist</outputDirectory>
+          <workDirectory>target/assembly/work</workDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <developers>
+    <developer>
+      <name>Inderjeet Singh</name>
+      <organization>Trymph Inc.</organization>
+    </developer>
+    <developer>
+      <name>Joel Leitch</name>
+      <organization>Google Inc.</organization>
+    </developer>
+    <developer>
+      <name>Jesse Wilson</name>
+      <organization>Square Inc.</organization>
+    </developer>
+  </developers>
+</project>
+
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom.md5 b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom.md5
new file mode 100644
index 0000000..d291738
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom.md5
@@ -0,0 +1 @@
+7190a0baaa9c93077152f347d9163889
\ No newline at end of file
diff --git a/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom.sha1 b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom.sha1
new file mode 100644
index 0000000..099f980
--- /dev/null
+++ b/common/m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom.sha1
@@ -0,0 +1 @@
+06252c690921ee1dc719594a5d4da1829194f8b3
\ No newline at end of file
diff --git a/common/m2/repository/com/google/code/gson/gson/maven-metadata.xml b/common/m2/repository/com/google/code/gson/gson/maven-metadata.xml
index 1ce875b..60027fc 100644
--- a/common/m2/repository/com/google/code/gson/gson/maven-metadata.xml
+++ b/common/m2/repository/com/google/code/gson/gson/maven-metadata.xml
@@ -2,10 +2,18 @@
 <metadata>
   <groupId>com.google.code.gson</groupId>
   <artifactId>gson</artifactId>
+  <version>2.3.1</version>
   <versioning>
-    <latest>2.3</latest>
-    <release>2.3</release>
+    <latest>2.3.1</latest>
+    <release>2.3.1</release>
     <versions>
+      <version>1.1</version>
+      <version>1.1.1</version>
+      <version>1.2</version>
+      <version>1.2.2</version>
+      <version>1.2.3</version>
+      <version>1.3</version>
+      <version>1.4</version>
       <version>1.5</version>
       <version>1.6</version>
       <version>1.7</version>
@@ -16,10 +24,12 @@
       <version>2.2</version>
       <version>2.2.1</version>
       <version>2.2.2</version>
+      <version>2.2.2-atlassian-1</version>
       <version>2.2.3</version>
       <version>2.2.4</version>
       <version>2.3</version>
+      <version>2.3.1</version>
     </versions>
-    <lastUpdated>20140811234616</lastUpdated>
+    <lastUpdated>20150112205550</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/com/google/truth/truth-parent/maven-metadata.xml b/common/m2/repository/com/google/truth/truth-parent/maven-metadata.xml
new file mode 100644
index 0000000..39e4523
--- /dev/null
+++ b/common/m2/repository/com/google/truth/truth-parent/maven-metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>com.google.truth</groupId>
+  <artifactId>truth-parent</artifactId>
+  <version>0.25</version>
+  <versioning>
+    <latest>0.25</latest>
+    <release>0.25</release>
+    <versions>
+      <version>0.21</version>
+      <version>0.23</version>
+      <version>0.24</version>
+      <version>0.25</version>
+    </versions>
+    <lastUpdated>20141219193649</lastUpdated>
+  </versioning>
+</metadata>
diff --git a/common/m2/repository/com/google/truth/truth/maven-metadata.xml b/common/m2/repository/com/google/truth/truth/maven-metadata.xml
new file mode 100644
index 0000000..e6aaf12
--- /dev/null
+++ b/common/m2/repository/com/google/truth/truth/maven-metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>com.google.truth</groupId>
+  <artifactId>truth</artifactId>
+  <version>0.25</version>
+  <versioning>
+    <latest>0.25</latest>
+    <release>0.25</release>
+    <versions>
+      <version>0.21</version>
+      <version>0.22</version>
+      <version>0.23</version>
+      <version>0.24</version>
+      <version>0.25</version>
+    </versions>
+    <lastUpdated>20141219193458</lastUpdated>
+  </versioning>
+</metadata>
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar
new file mode 100644
index 0000000..566d37e
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar
Binary files differ
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar.md5 b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar.md5
new file mode 100644
index 0000000..1336866
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar.md5
@@ -0,0 +1 @@
+7d1c0d995a06d4a996b53e5964ccc58c
\ No newline at end of file
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar.sha1 b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar.sha1
new file mode 100644
index 0000000..59f6c76
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1-sources.jar.sha1
@@ -0,0 +1 @@
+ad7ef1e41edf10e5b246bedcd76dc7c592275ab2
\ No newline at end of file
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar
new file mode 100644
index 0000000..ded7ceb
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar
Binary files differ
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar.md5 b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar.md5
new file mode 100644
index 0000000..406ec45
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar.md5
@@ -0,0 +1 @@
+d75417a813c37b958be2be0a766f0a65
\ No newline at end of file
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar.sha1 b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar.sha1
new file mode 100644
index 0000000..1fe0423
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.jar.sha1
@@ -0,0 +1 @@
+ce374ac81e0937384ca9d43fa93f56c915029c44
\ No newline at end of file
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom
new file mode 100644
index 0000000..dc73837
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom
@@ -0,0 +1,144 @@
+<?xml version="1.0"?>
+<!--
+*******************************************************************************
+* Copyright (C) 2010-2014, International Business Machines Corporation and    *
+* others. All Rights Reserved.                                                *
+*******************************************************************************
+-->
+<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>com.ibm.icu</groupId>
+  <artifactId>icu4j</artifactId>
+  <version>54.1.1</version>
+
+  <name>ICU4J</name>
+  <description>
+    International Component for Unicode for Java (ICU4J) is a mature, widely used Java library
+    providing Unicode and Globalization support 
+  </description>
+  <url>http://icu-project.org/</url>
+  <inceptionYear>2001</inceptionYear>
+  <licenses>
+    <license>
+      <name>ICU License</name>
+      <url>http://source.icu-project.org/repos/icu/icu/trunk/license.html</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <id>mark</id>
+      <name>Mark Davis</name>
+      <organization>Google</organization>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>emmons</id>
+      <name>John Emmons</name>
+      <organization>IBM Corporation</organization>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>doug</id>
+      <name>Doug Felt</name>
+      <organization>Google</organization>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>deborah</id>
+      <name>Deborah Goldsmith</name>
+      <organization>Apple</organization>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>srl</id>
+      <name>Steven Loomis</name>
+      <organization>IBM Corporation</organization>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>markus</id>
+      <name>Markus Scherer</name>
+      <organization>Google</organization>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>pedberg</id>
+      <name>Peter Edberg</name>
+      <organization>Apple</organization>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>yoshito</id>
+      <name>Yoshito Umaoka</name>
+      <organization>IBM Corporation</organization>
+      <roles>
+        <role>PMC Member</role>
+      </roles>
+    </developer>
+  </developers>
+
+  <mailingLists>
+    <mailingList>
+      <name>icu-support</name>
+      <subscribe>https://lists.sourceforge.net/lists/listinfo/icu-support</subscribe>
+      <unsubscribe>https://lists.sourceforge.net/lists/listinfo/icu-support</unsubscribe>
+      <post>icu-support@lists.sourceforge.net</post>
+      <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=icu-support</archive>
+    </mailingList>
+    <mailingList>
+      <name>icu-announce</name>
+      <subscribe>https://lists.sourceforge.net/lists/listinfo/icu-announce</subscribe>
+      <unsubscribe>https://lists.sourceforge.net/lists/listinfo/icu-announce</unsubscribe>
+      <post>icu-announce@lists.sourceforge.net</post>
+      <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=icu-announce</archive>
+    </mailingList>
+    <mailingList>
+      <name>icu-design</name>
+      <subscribe>https://lists.sourceforge.net/lists/listinfo/icu-design</subscribe>
+      <unsubscribe>https://lists.sourceforge.net/lists/listinfo/icu-design</unsubscribe>
+      <post>icu-design@lists.sourceforge.net</post>
+      <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=icu-design</archive>
+    </mailingList>
+  </mailingLists>
+
+  <scm>
+    <connection>scm:svn:http://source.icu-project.org/repos/icu/icu4j/trunk/</connection>
+    <developerConnection>scm:svn:http://source.icu-project.org/repos/icu/icu4j/trunk/</developerConnection>
+    <url>http://source.icu-project.org/repos/icu/icu4j/trunk/</url>
+  </scm>
+  <issueManagement>
+    <system>Trac</system>
+    <url>http://bugs.icu-project.org/trac/</url>
+  </issueManagement>
+
+  <distributionManagement>
+    <repository>
+      <id>icu4j-releases</id>
+      <name>ICU4J Central Repository</name>
+      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
+    </repository>
+    <snapshotRepository>
+      <id>icu4j-snapshots</id>
+      <name>ICU4J Central Development Repository</name>
+      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+    </snapshotRepository>
+  </distributionManagement>
+</project>
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom.md5 b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom.md5
new file mode 100644
index 0000000..9289269
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom.md5
@@ -0,0 +1 @@
+5363b028df0075c5d7b940a185a3bb11
\ No newline at end of file
diff --git a/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom.sha1 b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom.sha1
new file mode 100644
index 0000000..fc38590
--- /dev/null
+++ b/common/m2/repository/com/ibm/icu/icu4j/54.1.1/icu4j-54.1.1.pom.sha1
@@ -0,0 +1 @@
+8fecd2f72c377069c928416d7ebbc39503ec5a73
\ No newline at end of file
diff --git a/common/m2/repository/com/ibm/icu/icu4j/maven-metadata.xml b/common/m2/repository/com/ibm/icu/icu4j/maven-metadata.xml
index 991fc97..5edc5fd 100644
--- a/common/m2/repository/com/ibm/icu/icu4j/maven-metadata.xml
+++ b/common/m2/repository/com/ibm/icu/icu4j/maven-metadata.xml
@@ -2,10 +2,16 @@
 <metadata>
   <groupId>com.ibm.icu</groupId>
   <artifactId>icu4j</artifactId>
+  <version>54.1.1</version>
   <versioning>
-    <latest>53.1</latest>
-    <release>53.1</release>
+    <latest>54.1.1</latest>
+    <release>54.1.1</release>
     <versions>
+      <version>2.6.1</version>
+      <version>3.4.4</version>
+      <version>3.6.1</version>
+      <version>3.8</version>
+      <version>4.0.1</version>
       <version>4.6</version>
       <version>4.6.1</version>
       <version>4.6.1.1</version>
@@ -19,7 +25,9 @@
       <version>51.2</version>
       <version>52.1</version>
       <version>53.1</version>
+      <version>54.1</version>
+      <version>54.1.1</version>
     </versions>
-    <lastUpdated>20140403201954</lastUpdated>
+    <lastUpdated>20141010195803</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/com/intellij/annotations/12.0/NOTICE b/common/m2/repository/com/intellij/annotations/12.0/NOTICE
new file mode 100644
index 0000000..cdf6ff8
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/12.0/NOTICE
@@ -0,0 +1,272 @@
+/*
+ *                                 Apache License
+ *                           Version 2.0, January 2004
+ *                        http://www.apache.org/licenses/
+ *
+ *   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+ *
+ *   1. Definitions.
+ *
+ *      "License" shall mean the terms and conditions for use, reproduction,
+ *      and distribution as defined by Sections 1 through 9 of this document.
+ *
+ *      "Licensor" shall mean the copyright owner or entity authorized by
+ *      the copyright owner that is granting the License.
+ *
+ *      "Legal Entity" shall mean the union of the acting entity and all
+ *      other entities that control, are controlled by, or are under common
+ *      control with that entity. For the purposes of this definition,
+ *      "control" means (i) the power, direct or indirect, to cause the
+ *      direction or management of such entity, whether by contract or
+ *      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ *      outstanding shares, or (iii) beneficial ownership of such entity.
+ *
+ *      "You" (or "Your") shall mean an individual or Legal Entity
+ *      exercising permissions granted by this License.
+ *
+ *      "Source" form shall mean the preferred form for making modifications,
+ *      including but not limited to software source code, documentation
+ *      source, and configuration files.
+ *
+ *      "Object" form shall mean any form resulting from mechanical
+ *      transformation or translation of a Source form, including but
+ *      not limited to compiled object code, generated documentation,
+ *      and conversions to other media types.
+ *
+ *      "Work" shall mean the work of authorship, whether in Source or
+ *      Object form, made available under the License, as indicated by a
+ *      copyright notice that is included in or attached to the work
+ *      (an example is provided in the Appendix below).
+ *
+ *      "Derivative Works" shall mean any work, whether in Source or Object
+ *      form, that is based on (or derived from) the Work and for which the
+ *      editorial revisions, annotations, elaborations, or other modifications
+ *      represent, as a whole, an original work of authorship. For the purposes
+ *      of this License, Derivative Works shall not include works that remain
+ *      separable from, or merely link (or bind by name) to the interfaces of,
+ *      the Work and Derivative Works thereof.
+ *
+ *      "Contribution" shall mean any work of authorship, including
+ *      the original version of the Work and any modifications or additions
+ *      to that Work or Derivative Works thereof, that is intentionally
+ *      submitted to Licensor for inclusion in the Work by the copyright owner
+ *      or by an individual or Legal Entity authorized to submit on behalf of
+ *      the copyright owner. For the purposes of this definition, "submitted"
+ *      means any form of electronic, verbal, or written communication sent
+ *      to the Licensor or its representatives, including but not limited to
+ *      communication on electronic mailing lists, source code control systems,
+ *      and issue tracking systems that are managed by, or on behalf of, the
+ *      Licensor for the purpose of discussing and improving the Work, but
+ *      excluding communication that is conspicuously marked or otherwise
+ *      designated in writing by the copyright owner as "Not a Contribution."
+ *
+ *      "Contributor" shall mean Licensor and any individual or Legal Entity
+ *      on behalf of whom a Contribution has been received by Licensor and
+ *      subsequently incorporated within the Work.
+ *
+ *   2. Grant of Copyright License. Subject to the terms and conditions of
+ *      this License, each Contributor hereby grants to You a perpetual,
+ *      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ *      copyright license to reproduce, prepare Derivative Works of,
+ *      publicly display, publicly perform, sublicense, and distribute the
+ *      Work and such Derivative Works in Source or Object form.
+ *
+ *   3. Grant of Patent License. Subject to the terms and conditions of
+ *      this License, each Contributor hereby grants to You a perpetual,
+ *      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ *      (except as stated in this section) patent license to make, have made,
+ *      use, offer to sell, sell, import, and otherwise transfer the Work,
+ *      where such license applies only to those patent claims licensable
+ *      by such Contributor that are necessarily infringed by their
+ *      Contribution(s) alone or by combination of their Contribution(s)
+ *      with the Work to which such Contribution(s) was submitted. If You
+ *      institute patent litigation against any entity (including a
+ *      cross-claim or counterclaim in a lawsuit) alleging that the Work
+ *      or a Contribution incorporated within the Work constitutes direct
+ *      or contributory patent infringement, then any patent licenses
+ *      granted to You under this License for that Work shall terminate
+ *      as of the date such litigation is filed.
+ *
+ *   4. Redistribution. You may reproduce and distribute copies of the
+ *      Work or Derivative Works thereof in any medium, with or without
+ *      modifications, and in Source or Object form, provided that You
+ *      meet the following conditions:
+ *
+ *      (a) You must give any other recipients of the Work or
+ *          Derivative Works a copy of this License; and
+ *
+ *      (b) You must cause any modified files to carry prominent notices
+ *          stating that You changed the files; and
+ *
+ *      (c) You must retain, in the Source form of any Derivative Works
+ *          that You distribute, all copyright, patent, trademark, and
+ *          attribution notices from the Source form of the Work,
+ *          excluding those notices that do not pertain to any part of
+ *          the Derivative Works; and
+ *
+ *      (d) If the Work includes a "NOTICE" text file as part of its
+ *          distribution, then any Derivative Works that You distribute must
+ *          include a readable copy of the attribution notices contained
+ *          within such NOTICE file, excluding those notices that do not
+ *          pertain to any part of the Derivative Works, in at least one
+ *          of the following places: within a NOTICE text file distributed
+ *          as part of the Derivative Works; within the Source form or
+ *          documentation, if provided along with the Derivative Works; or,
+ *          within a display generated by the Derivative Works, if and
+ *          wherever such third-party notices normally appear. The contents
+ *          of the NOTICE file are for informational purposes only and
+ *          do not modify the License. You may add Your own attribution
+ *          notices within Derivative Works that You distribute, alongside
+ *          or as an addendum to the NOTICE text from the Work, provided
+ *          that such additional attribution notices cannot be construed
+ *          as modifying the License.
+ *
+ *      You may add Your own copyright statement to Your modifications and
+ *      may provide additional or different license terms and conditions
+ *      for use, reproduction, or distribution of Your modifications, or
+ *      for any such Derivative Works as a whole, provided Your use,
+ *      reproduction, and distribution of the Work otherwise complies with
+ *      the conditions stated in this License.
+ *
+ *   5. Submission of Contributions. Unless You explicitly state otherwise,
+ *      any Contribution intentionally submitted for inclusion in the Work
+ *      by You to the Licensor shall be under the terms and conditions of
+ *      this License, without any additional terms or conditions.
+ *      Notwithstanding the above, nothing herein shall supersede or modify
+ *      the terms of any separate license agreement you may have executed
+ *      with Licensor regarding such Contributions.
+ *
+ *   6. Trademarks. This License does not grant permission to use the trade
+ *      names, trademarks, service marks, or product names of the Licensor,
+ *      except as required for reasonable and customary use in describing the
+ *      origin of the Work and reproducing the content of the NOTICE file.
+ *
+ *   7. Disclaimer of Warranty. Unless required by applicable law or
+ *      agreed to in writing, Licensor provides the Work (and each
+ *      Contributor provides its Contributions) on an "AS IS" BASIS,
+ *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ *      implied, including, without limitation, any warranties or conditions
+ *      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ *      PARTICULAR PURPOSE. You are solely responsible for determining the
+ *      appropriateness of using or redistributing the Work and assume any
+ *      risks associated with Your exercise of permissions under this License.
+ *
+ *   8. Limitation of Liability. In no event and under no legal theory,
+ *      whether in tort (including negligence), contract, or otherwise,
+ *      unless required by applicable law (such as deliberate and grossly
+ *      negligent acts) or agreed to in writing, shall any Contributor be
+ *      liable to You for damages, including any direct, indirect, special,
+ *      incidental, or consequential damages of any character arising as a
+ *      result of this License or out of the use or inability to use the
+ *      Work (including but not limited to damages for loss of goodwill,
+ *      work stoppage, computer failure or malfunction, or any and all
+ *      other commercial damages or losses), even if such Contributor
+ *      has been advised of the possibility of such damages.
+ *
+ *   9. Accepting Warranty or Additional Liability. While redistributing
+ *      the Work or Derivative Works thereof, You may choose to offer,
+ *      and charge a fee for, acceptance of support, warranty, indemnity,
+ *      or other liability obligations and/or rights consistent with this
+ *      License. However, in accepting such obligations, You may act only
+ *      on Your own behalf and on Your sole responsibility, not on behalf
+ *      of any other Contributor, and only if You agree to indemnify,
+ *      defend, and hold each Contributor harmless for any liability
+ *      incurred by, or claims asserted against, such Contributor by reason
+ *      of your accepting any such warranty or additional liability.
+ *
+ *   END OF TERMS AND CONDITIONS
+ *
+ *   APPENDIX: How to apply the Apache License to your work.
+ *
+ *      To apply the Apache License to your work, attach the following
+ *      boilerplate notice, with the fields enclosed by brackets "[]"
+ *      replaced with your own identifying information. (Don't include
+ *      the brackets!)  The text should be enclosed in the appropriate
+ *      comment syntax for the file format. We also recommend that a
+ *      file or class name and description of purpose be included on the
+ *      same "printed page" as the copyright notice for easier
+ *      identification within third-party archives.
+ *
+ *   Copyright [yyyy] [name of copyright owner]
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ */
+
+W3C® SOFTWARE NOTICE AND LICENSE
+http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
+
+This work (and included software, documentation such as READMEs, or other
+related items) is being provided by the copyright holders under the following
+license. By obtaining, using and/or copying this work, you (the licensee) agree
+that you have read, understood, and will comply with the following terms and
+conditions.
+
+Permission to copy, modify, and distribute this software and its documentation,
+with or without modification, for any purpose and without fee or royalty is
+hereby granted, provided that you include the following on ALL copies of the
+software and documentation or portions thereof, including modifications:
+
+  1. The full text of this NOTICE in a location viewable to users of the
+     redistributed or derivative work. 
+  2. Any pre-existing intellectual property disclaimers, notices, or terms
+     and conditions. If none exist, the W3C Software Short Notice should be
+     included (hypertext is preferred, text is permitted) within the body
+     of any redistributed or derivative code.
+  3. Notice of any changes or modifications to the files, including the date
+     changes were made. (We recommend you provide URIs to the location from
+     which the code is derived.)
+     
+THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE
+NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT
+THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY
+PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
+
+The name and trademarks of copyright holders may NOT be used in advertising or
+publicity pertaining to the software without specific, written prior permission.
+Title to copyright in this software and any associated documentation will at
+all times remain with copyright holders.
+
+____________________________________
+
+This formulation of W3C's notice and license became active on December 31 2002.
+This version removes the copyright ownership notice such that this license can
+be used with materials other than those owned by the W3C, reflects that ERCIM
+is now a host of the W3C, includes references to this specific dated version of
+the license, and removes the ambiguous grant of "use". Otherwise, this version
+is the same as the previous version and is written so as to preserve the Free
+Software Foundation's assessment of GPL compatibility and OSI's certification
+under the Open Source Definition. Please see our Copyright FAQ for common
+questions about using materials from our site, including specific terms and
+conditions for packages like libwww, Amaya, and Jigsaw. Other questions about
+this notice can be directed to site-policy@w3.org.
+ 
+Joseph Reagle <site-policy@w3.org> 
+
+This license came from: http://www.megginson.com/SAX/copying.html
+  However please note future versions of SAX may be covered 
+  under http://saxproject.org/?selected=pd
+
+SAX2 is Free!
+
+I hereby abandon any property rights to SAX 2.0 (the Simple API for
+XML), and release all of the SAX 2.0 source code, compiled code, and
+documentation contained in this distribution into the Public Domain.
+SAX comes with NO WARRANTY or guarantee of fitness for any
+purpose.
+
+David Megginson, david@megginson.com
+2000-05-05
diff --git a/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0-sources.jar b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0-sources.jar
new file mode 100644
index 0000000..01c5265
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0-sources.jar
Binary files differ
diff --git a/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0-sources.jar.md5 b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0-sources.jar.md5
new file mode 100644
index 0000000..a2b4185
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0-sources.jar.md5
@@ -0,0 +1 @@
+a743cca7a9df1ec87d4f693863189ea9
\ No newline at end of file
diff --git a/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.jar b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.jar
new file mode 100644
index 0000000..7f8b362
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.jar
Binary files differ
diff --git a/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.jar.md5 b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.jar.md5
new file mode 100644
index 0000000..bacb476
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.jar.md5
@@ -0,0 +1 @@
+c18689d6a23452a0c0cf15b3cc312a2f
\ No newline at end of file
diff --git a/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom
new file mode 100644
index 0000000..d18ebfa
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom
@@ -0,0 +1,52 @@
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.intellij</groupId>
+  <artifactId>annotations</artifactId>
+  <version>12.0</version>
+  <packaging>jar</packaging>
+  <name>IntelliJ IDEA Annotations</name>
+  <url>http://www.jetbrains.org</url>
+    <description>
+        A set of annotations used for code inspection support and code documentation.
+    </description>
+  <licenses>
+    <license>
+      <name>Apache License 2</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <name>Jetbrains developpers</name>
+      <email>support@jetbrains.com</email>
+      <organization>Jetbrains</organization>
+      <organizationUrl>http://www.jetbrains.com</organizationUrl>
+      <timezone>+1</timezone>
+    </developer>
+  </developers>
+
+  <scm>
+      <url>https://github.com/JetBrains/intellij-community</url>
+      <connection>ssh://git@github.com:JetBrains/intellij-community.git</connection>
+  </scm>
+
+
+  <dependencies/>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file
diff --git a/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom.md5 b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom.md5
new file mode 100644
index 0000000..c442208
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom.md5
@@ -0,0 +1 @@
+cb7282199aa25fb6171ef26de57671fa
\ No newline at end of file
diff --git a/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom.sha1 b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom.sha1
new file mode 100644
index 0000000..fe9aaa9
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/12.0/annotations-12.0.pom.sha1
@@ -0,0 +1 @@
+aaa1796465aa46f478176c06456397418b34d2b3
\ No newline at end of file
diff --git a/common/m2/repository/com/intellij/annotations/maven-metadata.xml b/common/m2/repository/com/intellij/annotations/maven-metadata.xml
new file mode 100644
index 0000000..5d1451c
--- /dev/null
+++ b/common/m2/repository/com/intellij/annotations/maven-metadata.xml
@@ -0,0 +1,19 @@
+<?xml version='1.0'?>
+<metadata>
+  <groupId>com.intellij</groupId>
+  <artifactId>annotations</artifactId>
+  <version>12.0</version>
+  <versioning>
+    <release>12.0</release>
+    <latest>12.0</latest>
+    <versions>
+      <version>5.1</version>
+      <version>6.0.3</version>
+      <version>6.0.5</version>
+      <version>7.0.3</version>
+      <version>9.0.4</version>
+      <version>12.0</version>
+    </versions>
+    <lastUpdated>20130308050323</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file
diff --git a/common/m2/repository/junit/junit/4.12/NOTICE b/common/m2/repository/junit/junit/4.12/NOTICE
new file mode 100644
index 0000000..fb68629
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/NOTICE
@@ -0,0 +1,214 @@
+JUnit
+
+Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
+LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
+CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. DEFINITIONS
+
+"Contribution" means:
+
+      a) in the case of the initial Contributor, the initial code and
+         documentation distributed under this Agreement, and
+      b) in the case of each subsequent Contributor:
+
+      i) changes to the Program, and
+
+      ii) additions to the Program;
+
+      where such changes and/or additions to the Program originate from and are
+distributed by that particular Contributor. A Contribution 'originates' from a
+Contributor if it was added to the Program by such Contributor itself or anyone
+acting on such Contributor's behalf. Contributions do not include additions to
+the Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii) are
+not derivative works of the Program. 
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents " mean patent claims licensable by a Contributor which are
+necessarily infringed by the use or sale of its Contribution alone or when
+combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+2. GRANT OF RIGHTS
+
+      a) Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide, royalty-free copyright license to
+reproduce, prepare derivative works of, publicly display, publicly perform,
+distribute and sublicense the Contribution of such Contributor, if any, and
+such derivative works, in source code and object code form.
+
+      b) Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide, royalty-free patent license under
+Licensed Patents to make, use, sell, offer to sell, import and otherwise
+transfer the Contribution of such Contributor, if any, in source code and
+object code form. This patent license shall apply to the combination of the
+Contribution and the Program if, at the time the Contribution is added by the
+Contributor, such addition of the Contribution causes such combination to be
+covered by the Licensed Patents. The patent license shall not apply to any
+other combinations which include the Contribution. No hardware per se is
+licensed hereunder. 
+
+      c) Recipient understands that although each Contributor grants the
+licenses to its Contributions set forth herein, no assurances are provided by
+any Contributor that the Program does not infringe the patent or other
+intellectual property rights of any other entity. Each Contributor disclaims
+any liability to Recipient for claims brought by any other entity based on
+infringement of intellectual property rights or otherwise. As a condition to
+exercising the rights and licenses granted hereunder, each Recipient hereby
+assumes sole responsibility to secure any other intellectual property rights
+needed, if any. For example, if a third party patent license is required to
+allow Recipient to distribute the Program, it is Recipient's responsibility to
+acquire that license before distributing the Program.
+
+      d) Each Contributor represents that to its knowledge it has sufficient
+copyright rights in its Contribution, if any, to grant the copyright license
+set forth in this Agreement. 
+
+3. REQUIREMENTS
+
+A Contributor may choose to distribute the Program in object code form under
+its own license agreement, provided that:
+
+      a) it complies with the terms and conditions of this Agreement; and
+
+      b) its license agreement:
+
+      i) effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose; 
+
+      ii) effectively excludes on behalf of all Contributors all liability for
+damages, including direct, indirect, special, incidental and consequential
+damages, such as lost profits; 
+
+      iii) states that any provisions which differ from this Agreement are
+offered by that Contributor alone and not by any other party; and
+
+      iv) states that source code for the Program is available from such
+Contributor, and informs licensees how to obtain it in a reasonable manner on
+or through a medium customarily used for software exchange. 
+
+When the Program is made available in source code form:
+
+      a) it must be made available under this Agreement; and 
+
+      b) a copy of this Agreement must be included with each copy of the
+Program. 
+
+Contributors may not remove or alter any copyright notices contained within the
+Program.
+
+Each Contributor must identify itself as the originator of its Contribution, if
+any, in a manner that reasonably allows subsequent Recipients to identify the
+originator of the Contribution.
+
+4. COMMERCIAL DISTRIBUTION
+
+Commercial distributors of software may accept certain responsibilities with
+respect to end users, business partners and the like. While this license is
+intended to facilitate the commercial use of the Program, the Contributor who
+includes the Program in a commercial product offering should do so in a manner
+which does not create potential liability for other Contributors. Therefore, if
+a Contributor includes the Program in a commercial product offering, such
+Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
+every other Contributor ("Indemnified Contributor") against any losses, damages
+and costs (collectively "Losses") arising from claims, lawsuits and other legal
+actions brought by a third party against the Indemnified Contributor to the
+extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may
+participate in any such claim at its own expense.
+
+For example, a Contributor might include the Program in a commercial product
+offering, Product X. That Contributor is then a Commercial Contributor. If that
+Commercial Contributor then makes performance claims, or offers warranties
+related to Product X, those performance claims and warranties are such
+Commercial Contributor's responsibility alone. Under this section, the
+Commercial Contributor would have to defend claims against the other
+Contributors related to those performance claims and warranties, and if a court
+requires any other Contributor to pay any damages as a result, the Commercial
+Contributor must pay those damages.
+
+5. NO WARRANTY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
+IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
+NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
+Recipient is solely responsible for determining the appropriateness of using
+and distributing the Program and assumes all risks associated with its exercise
+of rights under this Agreement, including but not limited to the risks and
+costs of program errors, compliance with applicable laws, damage to or loss of
+data, programs or equipment, and unavailability or interruption of operations.
+
+6. DISCLAIMER OF LIABILITY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
+CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
+PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+7. GENERAL
+
+If any provision of this Agreement is invalid or unenforceable under applicable
+law, it shall not affect the validity or enforceability of the remainder of the
+terms of this Agreement, and without further action by the parties hereto, such
+provision shall be reformed to the minimum extent necessary to make such
+provision valid and enforceable.
+
+If Recipient institutes patent litigation against any
+entity (including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other software or
+hardware) infringes such Recipient's patent(s), then such Recipient's rights
+granted under Section 2(b) shall terminate as of the date such litigation is
+filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails to
+comply with any of the material terms or conditions of this Agreement and does
+not cure such failure in a reasonable period of time after becoming aware of
+such noncompliance. If all Recipient's rights under this Agreement terminate,
+Recipient agrees to cease use and distribution of the Program as soon as
+reasonably practicable. However, Recipient's obligations under this Agreement
+and any licenses granted by Recipient relating to the Program shall continue
+and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement, but in
+order to avoid inconsistency the Agreement is copyrighted and may only be
+modified in the following manner. The Agreement Steward reserves the right to
+publish new versions (including revisions) of this Agreement from time to time.
+No one other than the Agreement Steward has the right to modify this Agreement.
+The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to this
+Agreement will bring a legal action under this Agreement more than one year
+after the cause of action arose. Each party waives its rights to a jury trial
+in any resulting litigation. 
+
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar b/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar
new file mode 100644
index 0000000..884f92f
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar
Binary files differ
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar.md5 b/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar.md5
new file mode 100644
index 0000000..2e645c5
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar.md5
@@ -0,0 +1 @@
+97f2fb8b3005d11d5a754adb4d99c926
\ No newline at end of file
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar.sha1 b/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar.sha1
new file mode 100644
index 0000000..4c9b5c0
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12-sources.jar.sha1
@@ -0,0 +1 @@
+a6c32b40bf3d76eca54e3c601e5d1470c86fcdfa
\ No newline at end of file
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12.jar b/common/m2/repository/junit/junit/4.12/junit-4.12.jar
new file mode 100644
index 0000000..3a7fc26
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12.jar
Binary files differ
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12.jar.md5 b/common/m2/repository/junit/junit/4.12/junit-4.12.jar.md5
new file mode 100644
index 0000000..7695df4
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12.jar.md5
@@ -0,0 +1 @@
+5b38c40c97fbd0adee29f91e60405584
\ No newline at end of file
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12.jar.sha1 b/common/m2/repository/junit/junit/4.12/junit-4.12.jar.sha1
new file mode 100644
index 0000000..94d69f8
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12.jar.sha1
@@ -0,0 +1 @@
+2973d150c0dc1fefe998f834810d68f278ea58ec
\ No newline at end of file
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12.pom b/common/m2/repository/junit/junit/4.12/junit-4.12.pom
new file mode 100644
index 0000000..799cb9b
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12.pom
@@ -0,0 +1,551 @@
+<?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>junit</groupId>
+    <artifactId>junit</artifactId>
+    <version>4.12</version>
+
+    <name>JUnit</name>
+    <description>JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.</description>
+    <url>http://junit.org</url>
+    <inceptionYear>2002</inceptionYear>
+    <organization>
+        <name>JUnit</name>
+        <url>http://www.junit.org</url>
+    </organization>
+    <licenses>
+        <license>
+            <name>Eclipse Public License 1.0</name>
+            <url>http://www.eclipse.org/legal/epl-v10.html</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+
+    <developers>
+        <developer>
+            <id>dsaff</id>
+            <name>David Saff</name>
+            <email>david@saff.net</email>
+        </developer>
+        <developer>
+            <id>kcooney</id>
+            <name>Kevin Cooney</name>
+            <email>kcooney@google.com</email>
+        </developer>
+        <developer>
+            <id>stefanbirkner</id>
+            <name>Stefan Birkner</name>
+            <email>mail@stefan-birkner.de</email>
+        </developer>
+        <developer>
+            <id>marcphilipp</id>
+            <name>Marc Philipp</name>
+            <email>mail@marcphilipp.de</email>
+        </developer>
+    </developers>
+    <contributors>
+        <contributor>
+            <name>JUnit contributors</name>
+            <organization>JUnit</organization>
+            <email>junit@yahoogroups.com</email>
+            <url>https://github.com/junit-team/junit/graphs/contributors</url>
+            <roles>
+                <role>developers</role>
+            </roles>
+        </contributor>
+    </contributors>
+
+    <mailingLists>
+        <mailingList>
+            <name>JUnit Mailing List</name>
+            <post>junit@yahoogroups.com</post>
+            <archive>https://groups.yahoo.com/neo/groups/junit/info</archive>
+        </mailingList>
+    </mailingLists>
+
+    <prerequisites>
+        <maven>3.0.4</maven>
+    </prerequisites>
+
+    <scm>
+        <connection>scm:git:git://github.com/junit-team/junit.git</connection>
+        <developerConnection>scm:git:git@github.com:junit-team/junit.git</developerConnection>
+        <url>http://github.com/junit-team/junit/tree/master</url>
+      <tag>r4.12</tag>
+  </scm>
+    <issueManagement>
+        <system>github</system>
+        <url>https://github.com/junit-team/junit/issues</url>
+    </issueManagement>
+    <ciManagement>
+        <system>jenkins</system>
+        <url>https://junit.ci.cloudbees.com/</url>
+    </ciManagement>
+    <distributionManagement>
+        <downloadUrl>https://github.com/junit-team/junit/wiki/Download-and-Install</downloadUrl>
+        <snapshotRepository>
+            <id>junit-snapshot-repo</id>
+            <name>Nexus Snapshot Repository</name>
+            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
+        </snapshotRepository>
+        <repository>
+            <id>junit-releases-repo</id>
+            <name>Nexus Release Repository</name>
+            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+        </repository>
+        <site>
+            <id>junit.github.io</id>
+            <url>gitsite:git@github.com/junit-team/junit.git</url>
+        </site>
+    </distributionManagement>
+
+    <properties>
+        <jdkVersion>1.5</jdkVersion>
+        <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
+        <arguments />
+        <gpg.keyname>67893CC4</gpg.keyname>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.hamcrest</groupId>
+            <artifactId>hamcrest-core</artifactId>
+            <version>1.3</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>${project.basedir}/src/main/resources</directory>
+            </resource>
+            <resource>
+                <directory>${project.basedir}</directory>
+                <includes>
+                    <include>LICENSE-junit.txt</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <!--
+            Both "org.apache" and "org.codehaus" are default providers of MOJO plugins
+            which are especially dedicated to Maven projects.
+            The MOJO stands for "Maven plain Old Java Object".
+            Each mojo is an executable goal in Maven, and a plugin is a distribution of
+            one or more related mojos.
+            For more information see http://maven.apache.org/plugin-developers/index.html
+
+            The following plugins are ordered according the Maven build lifecycle.
+            http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
+            -->
+            <plugin>
+                <!--
+                Checks that the version of user's maven installation is 3.0.4,
+                the JDK is 1.5+, no non-standard repositories are specified in
+                the project, requires only release versions of dependencies of other artifacts.
+                -->
+                <artifactId>maven-enforcer-plugin</artifactId>
+                <version>1.3.1</version>
+                <executions>
+                    <execution>
+                        <id>enforce-versions</id>
+                        <phase>initialize</phase>
+                        <goals>
+                            <goal>enforce</goal>
+                        </goals>
+                        <configuration>
+                            <fail>true</fail>
+                            <rules>
+                                <requireMavenVersion>
+                                    <!-- Some plugin features require a recent Maven runtime to work properly -->
+                                    <message>Current version of Maven ${maven.version} required to build the project
+                                        should be ${project.prerequisites.maven}, or higher!
+                                    </message>
+                                    <version>[${project.prerequisites.maven},)</version>
+                                </requireMavenVersion>
+                                <requireJavaVersion>
+                                    <message>Current JDK version ${java.version} should be ${jdkVersion}, or higher!
+                                    </message>
+                                    <version>${jdkVersion}</version>
+                                </requireJavaVersion>
+                                <requireNoRepositories>
+                                    <message>Best Practice is to never define repositories in pom.xml (use a repository
+                                        manager instead).
+                                    </message>
+                                </requireNoRepositories>
+                                <requireReleaseDeps>
+                                    <message>No Snapshots Dependencies Allowed!</message>
+                                </requireReleaseDeps>
+                            </rules>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <!--
+                Updates Version#id().
+                -->
+                <groupId>com.google.code.maven-replacer-plugin</groupId>
+                <artifactId>replacer</artifactId>
+                <version>1.5.3</version>
+                <executions>
+                    <execution>
+                        <phase>process-sources</phase>
+                        <goals>
+                            <goal>replace</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <ignoreMissingFile>false</ignoreMissingFile>
+                    <file>src/main/java/junit/runner/Version.java.template</file>
+                    <outputFile>src/main/java/junit/runner/Version.java</outputFile>
+                    <regex>false</regex>
+                    <token>@version@</token>
+                    <value>${project.version}</value>
+                </configuration>
+            </plugin>
+            <plugin><!-- Using jdk 1.5.0_22, package-info.java files are compiled correctly. -->
+                <!--
+                java compiler plugin forked in extra process
+                -->
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.1</version>
+                <configuration>
+                    <encoding>${project.build.sourceEncoding}</encoding>
+                    <source>${jdkVersion}</source>
+                    <target>${jdkVersion}</target>
+                    <testSource>${jdkVersion}</testSource>
+                    <testTarget>${jdkVersion}</testTarget>
+                    <compilerVersion>1.5</compilerVersion>
+                    <showDeprecation>true</showDeprecation>
+                    <showWarnings>true</showWarnings>
+                    <debug>true</debug>
+                    <fork>true</fork>
+                    <compilerArgs>
+                        <arg>-Xlint:unchecked</arg>
+                    </compilerArgs>
+                    <maxmem>128m</maxmem>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>animal-sniffer-maven-plugin</artifactId>
+                <version>1.11</version>
+                <executions>
+                    <execution>
+                        <id>signature-check</id>
+                        <phase>test</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                        <configuration>
+                            <signature>
+                                <groupId>org.codehaus.mojo.signature</groupId>
+                                <artifactId>java15</artifactId>
+                                <version>1.0</version>
+                            </signature>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <!--
+                A plugin which uses the JUnit framework in order to start
+                our junit suite "AllTests" after the sources are compiled.
+                -->
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.17</version>
+                <configuration>
+                    <test>org/junit/tests/AllTests.java</test>
+                    <useSystemClassLoader>true</useSystemClassLoader>
+                    <enableAssertions>false</enableAssertions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <!--
+                This plugin can package the main artifact's sources (src/main/java)
+                in to jar archive. See target/junit-*-sources.jar.
+                -->
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.2.1</version>
+            </plugin>
+            <plugin>
+                <!--
+                This plugin can generate Javadoc by a forked
+                process and then package the Javadoc
+                in jar archive target/junit-*-javadoc.jar.
+                -->
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.9.1</version>
+                <configuration>
+                    <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
+                    <show>protected</show>
+                    <author>false</author>
+                    <version>false</version>
+                    <detectLinks>false</detectLinks>
+                    <linksource>true</linksource>
+                    <keywords>true</keywords>
+                    <use>false</use>
+                    <windowtitle>JUnit API</windowtitle>
+                    <encoding>UTF-8</encoding>
+                    <locale>en</locale>
+                    <javadocVersion>${jdkVersion}</javadocVersion>
+                    <javaApiLinks>
+                        <property>
+                            <name>api_${jdkVersion}</name>
+                            <value>http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/</value>
+                        </property>
+                    </javaApiLinks>
+                    <excludePackageNames>junit.*,*.internal.*</excludePackageNames>
+                    <verbose>true</verbose>
+                    <minmemory>32m</minmemory>
+                    <maxmemory>128m</maxmemory>
+                    <failOnError>true</failOnError>
+                    <includeDependencySources>true</includeDependencySources>
+                    <dependencySourceIncludes>
+                        <dependencySourceInclude>org.hamcrest:hamcrest-core:*</dependencySourceInclude>
+                    </dependencySourceIncludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-release-plugin</artifactId>
+                <version>2.5</version>
+                <configuration>
+                    <mavenExecutorId>forked-path</mavenExecutorId>
+                    <useReleaseProfile>false</useReleaseProfile>
+                    <arguments>-Pgenerate-docs,junit-release ${arguments}</arguments>
+                    <tagNameFormat>r@{project.version}</tagNameFormat>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <version>3.3</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>com.github.stephenc.wagon</groupId>
+                        <artifactId>wagon-gitsite</artifactId>
+                        <version>0.4.1</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.apache.maven.doxia</groupId>
+                        <artifactId>doxia-module-markdown</artifactId>
+                        <version>1.5</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <version>2.4</version>
+                <configuration>
+                    <archive>
+                        <addMavenDescriptor>false</addMavenDescriptor>
+                        <manifest>
+                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <version>2.7</version>
+                <configuration>
+                    <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                    <!-- waiting for MPIR-267 -->
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>index</report>
+                            <report>dependency-info</report>
+                            <report>modules</report>
+                            <report>license</report>
+                            <report>project-team</report>
+                            <report>scm</report>
+                            <report>issue-tracking</report>
+                            <report>mailing-list</report>
+                            <report>dependency-management</report>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>cim</report>
+                            <report>distribution-management</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.9.1</version>
+                <configuration>
+                    <destDir>javadoc/latest</destDir>
+                    <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
+                    <show>protected</show>
+                    <author>false</author>
+                    <version>false</version>
+                    <detectLinks>false</detectLinks>
+                    <linksource>true</linksource>
+                    <keywords>true</keywords>
+                    <use>false</use>
+                    <windowtitle>JUnit API</windowtitle>
+                    <encoding>UTF-8</encoding>
+                    <locale>en</locale>
+                    <javadocVersion>${jdkVersion}</javadocVersion>
+                    <javaApiLinks>
+                        <property>
+                            <name>api_${jdkVersion}</name>
+                            <value>http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/</value>
+                        </property>
+                    </javaApiLinks>
+                    <excludePackageNames>junit.*,*.internal.*</excludePackageNames>
+                    <verbose>true</verbose>
+                    <minmemory>32m</minmemory>
+                    <maxmemory>128m</maxmemory>
+                    <failOnError>true</failOnError>
+                    <includeDependencySources>true</includeDependencySources>
+                    <dependencySourceIncludes>
+                        <dependencySourceInclude>org.hamcrest:hamcrest-core:*</dependencySourceInclude>
+                    </dependencySourceIncludes>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>javadoc</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <profiles>
+        <profile>
+            <id>junit-release</id>
+            <!--
+            Signs all artifacts before deploying to Maven Central.
+            -->
+            <build>
+                <plugins>
+                    <plugin>
+                        <!--
+                        The goal is to sign all artifacts so that the user may verify them before downloading.
+                        The automatic build system may reuire your key ID, and passphrase specified using system properties:
+                        -Dgpg.passphrase="<passphrase>" -Dgpg.keyname="<your key ID>"
+                        In order to create the key pair, use the command "gpg &ndash;&ndash;gen-key".
+                        (&ndash;&ndash; stands for double dash)
+                        -->
+                        <artifactId>maven-gpg-plugin</artifactId>
+                        <version>1.5</version>
+                        <executions>
+                            <execution>
+                                <id>gpg-sign</id>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>sign</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <id>generate-docs</id>
+            <!--
+            Generate the documentation artifacts. 
+            Note: this profile is also required to be active for release
+            builds due to the packaging requirements of the Central repo
+            -->
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <phase>prepare-package</phase>
+                                <goals>
+                                    <goal>jar-no-fork</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-javadoc</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <id>restrict-doclint</id>
+            <!-- doclint is only supported by JDK 8 -->
+            <activation>
+                <jdk>[1.8,)</jdk>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-compiler-plugin</artifactId>
+                        <configuration>
+                            <compilerArgs>
+                                <arg>-Xlint:unchecked</arg>
+                                <arg>-Xdoclint:accessibility,reference,syntax</arg>
+                            </compilerArgs>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <configuration>
+                            <additionalparam>-Xdoclint:accessibility -Xdoclint:reference</additionalparam>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+            <reporting>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <configuration>
+                            <additionalparam>-Xdoclint:accessibility -Xdoclint:reference</additionalparam>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </reporting>
+        </profile>
+        <profile>
+            <id>fast-tests</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <parallel>classes</parallel>
+                            <threadCountClasses>2</threadCountClasses>
+                        </configuration>
+                        <dependencies>
+                            <dependency>
+                                <groupId>org.apache.maven.surefire</groupId>
+                                <artifactId>surefire-junit47</artifactId>
+                                <version>2.17</version>
+                            </dependency>
+                        </dependencies>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12.pom.md5 b/common/m2/repository/junit/junit/4.12/junit-4.12.pom.md5
new file mode 100644
index 0000000..c468822
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12.pom.md5
@@ -0,0 +1 @@
+af7ca61fba26556cfe5b40cf15aadc14
\ No newline at end of file
diff --git a/common/m2/repository/junit/junit/4.12/junit-4.12.pom.sha1 b/common/m2/repository/junit/junit/4.12/junit-4.12.pom.sha1
new file mode 100644
index 0000000..339eaaf
--- /dev/null
+++ b/common/m2/repository/junit/junit/4.12/junit-4.12.pom.sha1
@@ -0,0 +1 @@
+35fb238baee3f3af739074d723279ebea2028398
\ No newline at end of file
diff --git a/common/m2/repository/junit/junit/maven-metadata.xml b/common/m2/repository/junit/junit/maven-metadata.xml
index d51dc6d..ddf83fd 100644
--- a/common/m2/repository/junit/junit/maven-metadata.xml
+++ b/common/m2/repository/junit/junit/maven-metadata.xml
@@ -2,6 +2,7 @@
 <metadata>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
+  <version>4.12</version>
   <versioning>
     <latest>4.12</latest>
     <release>4.12</release>
@@ -31,6 +32,6 @@
       <version>4.12-beta-3</version>
       <version>4.12</version>
     </versions>
-    <lastUpdated>20141204181041</lastUpdated>
+    <lastUpdated>20141204184830</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/NOTICE b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/NOTICE
new file mode 100644
index 0000000..d159169
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/NOTICE
@@ -0,0 +1,339 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+                            NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar
new file mode 100644
index 0000000..49e772d
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar
Binary files differ
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar.md5 b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar.md5
new file mode 100644
index 0000000..f6424b1
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar.md5
@@ -0,0 +1 @@
+b65c62fc5f7372e4068825d8269f7d62
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar.sha1 b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar.sha1
new file mode 100644
index 0000000..78d6954
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar.sha1
@@ -0,0 +1 @@
+22f9a8800c87aaf25282bbfcf8384246246063c2
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar
new file mode 100644
index 0000000..bd8d565
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar
Binary files differ
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar.md5 b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar.md5
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar.md5
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar.sha1 b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar.sha1
new file mode 100644
index 0000000..a6435c1
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar.sha1
@@ -0,0 +1 @@
+4f61348b4e7c943b85679dcb697f3a5fc3101921
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom
new file mode 100644
index 0000000..17a6b6b
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom
@@ -0,0 +1,69 @@
+<?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">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>net.sf.proguard</groupId>
+        <artifactId>proguard-parent</artifactId>
+        <version>5.2.1</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>proguard-base</artifactId>
+    <name>[${project.groupId}] ${project.artifactId}</name>
+
+    <build>
+        <sourceDirectory>../../../src</sourceDirectory>
+        <plugins>
+            <plugin>
+                <artifactId>maven-source-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>proguard/gui/**</exclude>
+                        <exclude>proguard/ant/**</exclude>
+                        <exclude>proguard/gradle/**</exclude>
+                        <exclude>proguard/wtk/**</exclude>
+                        <exclude>proguard/retrace/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>proguard/gui/**</exclude>
+                        <exclude>proguard/ant/**</exclude>
+                        <exclude>proguard/gradle/**</exclude>
+                        <exclude>proguard/wtk/**</exclude>
+                        <exclude>proguard/retrace/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <excludePackageNames>proguard.gui:proguard.ant:proguard.gradle:proguard.wtk:proguard.retrace</excludePackageNames>
+                    <!-- sourceFileExcludes doesn't seem to work, so we're using excludePackageNames -->
+                    <sourceFileExcludes>
+                        <sourceFileExclude>proguard/gui/**</sourceFileExclude>
+                        <sourceFileExclude>proguard/ant/**</sourceFileExclude>
+                        <sourceFileExclude>proguard/gradle/**</sourceFileExclude>
+                        <sourceFileExclude>proguard/wtk/**</sourceFileExclude>
+                        <sourceFileExclude>proguard/retrace/**</sourceFileExclude>
+                    </sourceFileExcludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <mainClass>proguard.ProGuard</mainClass>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom.md5 b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom.md5
new file mode 100644
index 0000000..1be1f05
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom.md5
@@ -0,0 +1 @@
+6da333ee5ae172886d9ce5b7190089bc
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom.sha1 b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom.sha1
new file mode 100644
index 0000000..34d4796
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.pom.sha1
@@ -0,0 +1 @@
+03e04f64ce189b9cfa7e08baae0d6f657a0204fd
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-base/maven-metadata.xml b/common/m2/repository/net/sf/proguard/proguard-base/maven-metadata.xml
index e6fd578..d9a8581 100644
--- a/common/m2/repository/net/sf/proguard/proguard-base/maven-metadata.xml
+++ b/common/m2/repository/net/sf/proguard/proguard-base/maven-metadata.xml
@@ -2,9 +2,10 @@
 <metadata>
   <groupId>net.sf.proguard</groupId>
   <artifactId>proguard-base</artifactId>
+  <version>5.2.1</version>
   <versioning>
-    <latest>5.1</latest>
-    <release>5.1</release>
+    <latest>5.2.1</latest>
+    <release>5.2.1</release>
     <versions>
       <version>4.2</version>
       <version>4.3</version>
@@ -19,7 +20,9 @@
       <version>4.11</version>
       <version>5.0</version>
       <version>5.1</version>
+      <version>5.2</version>
+      <version>5.2.1</version>
     </versions>
-    <lastUpdated>20141027203945</lastUpdated>
+    <lastUpdated>20150323215019</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/NOTICE b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/NOTICE
new file mode 100644
index 0000000..d159169
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/NOTICE
@@ -0,0 +1,339 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+                            NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar
new file mode 100644
index 0000000..e58d69e
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar
Binary files differ
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar.md5 b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar.md5
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar.md5
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar.sha1 b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar.sha1
new file mode 100644
index 0000000..69bebac
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar.sha1
@@ -0,0 +1 @@
+3c40c65126d6ec2289e8ca46aca7cdb5f818e545
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar
new file mode 100644
index 0000000..77d87ad
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar
Binary files differ
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar.md5 b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar.md5
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar.md5
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar.sha1 b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar.sha1
new file mode 100644
index 0000000..61302ca
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar.sha1
@@ -0,0 +1 @@
+5e9956c050fd84fa043517e77c4c0ff175a6b002
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom
new file mode 100644
index 0000000..f379152
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom
@@ -0,0 +1,91 @@
+<?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">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>net.sf.proguard</groupId>
+        <artifactId>proguard-parent</artifactId>
+        <version>5.2.1</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>proguard-gradle</artifactId>
+    <name>[${project.groupId}] ${project.artifactId}</name>
+
+    <build>
+        <sourceDirectory>../../../src</sourceDirectory>
+        <plugins>
+            <plugin>
+                <artifactId>maven-source-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>proguard/gradle/**</include>
+                    </includes>
+                </configuration>
+            </plugin>   
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>proguard/gradle/**</include>
+                    </includes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <addClasspath>true</addClasspath>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <subpackages>proguard.gradle</subpackages>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>proguard-base</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.gradle</groupId>
+            <artifactId>gradle-core</artifactId>
+            <version>2.2.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.gradle</groupId>
+            <artifactId>gradle-base-services</artifactId>
+            <version>2.2.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.gradle</groupId>
+            <artifactId>gradle-base-services-groovy</artifactId>
+            <version>2.2.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.groovy</groupId>
+            <artifactId>groovy-all</artifactId>
+            <version>2.3.6</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+    <repositories>
+        <repository>
+            <id>gradle</id>
+            <url>http://repo.gradle.org/gradle/libs-releases-local/</url>
+        </repository>
+    </repositories>
+</project>
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom.md5 b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom.md5
new file mode 100644
index 0000000..6d701dd
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom.md5
@@ -0,0 +1 @@
+14e4c05eb067890f6c31912d47d82f16
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom.sha1 b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom.sha1
new file mode 100644
index 0000000..8c553cd
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.pom.sha1
@@ -0,0 +1 @@
+3f835379d233d3c8dc6076dcfc5e38d077b8ac4b
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-gradle/maven-metadata.xml b/common/m2/repository/net/sf/proguard/proguard-gradle/maven-metadata.xml
index 16ce774..88ecf93 100644
--- a/common/m2/repository/net/sf/proguard/proguard-gradle/maven-metadata.xml
+++ b/common/m2/repository/net/sf/proguard/proguard-gradle/maven-metadata.xml
@@ -2,16 +2,19 @@
 <metadata>
   <groupId>net.sf.proguard</groupId>
   <artifactId>proguard-gradle</artifactId>
+  <version>5.2.1</version>
   <versioning>
-    <latest>5.1</latest>
-    <release>5.1</release>
+    <latest>5.2.1</latest>
+    <release>5.2.1</release>
     <versions>
       <version>4.9</version>
       <version>4.10</version>
       <version>4.11</version>
       <version>5.0</version>
       <version>5.1</version>
+      <version>5.2</version>
+      <version>5.2.1</version>
     </versions>
-    <lastUpdated>20141027203946</lastUpdated>
+    <lastUpdated>20150323215016</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom b/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom
new file mode 100644
index 0000000..10fb4d1
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom
@@ -0,0 +1,162 @@
+<?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">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>net.sf.proguard</groupId>
+    <artifactId>proguard-parent</artifactId>
+    <version>5.2.1</version>
+    <packaging>pom</packaging>
+    <name>[${project.groupId}] ${project.artifactId}</name>
+    <description>ProGuard is a free Java class file shrinker, optimizer, obfuscator, and preverifier.</description>
+    <url>http://proguard.sourceforge.net/</url>
+
+    <prerequisites>
+        <maven>3</maven>
+    </prerequisites>
+
+    <developers>
+        <developer>
+            <id>lafortune</id>
+            <name>Eric Lafortune</name>
+            <url>http://www.lafortune.eu/</url>
+            <organization>GuardSquare</organization>
+            <organizationUrl>http://www.guardsquare.com/</organizationUrl>
+            <roles>
+                <role>Project Administrator</role>
+                <role>Developer</role>
+            </roles>
+        </developer>
+    </developers>
+
+    <licenses>
+        <license>
+            <name>GNU General Public License, Version 2</name>
+            <url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+
+    <issueManagement>
+        <system>SourceForge.net Tracker</system>
+        <url>http://sourceforge.net/p/proguard/bugs/</url>
+    </issueManagement>
+
+    <scm>
+        <url>http://hg.code.sf.net/p/proguard/code</url>
+        <connection>scm:hg:http://hg.code.sf.net/p/proguard/code</connection>
+    </scm>
+
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-jar-plugin</artifactId>
+                    <version>2.4</version>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.8.1</version>
+                <configuration>
+                    <links>
+                        <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
+                    </links>
+                    <quiet>true</quiet>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>attach-javadoc</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.1.2</version>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-gpg-plugin</artifactId>
+                <version>1.1</version>
+                <executions>
+                    <execution>
+                        <id>sign-artifacts</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>sign</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <distributionManagement>
+        <repository>
+            <id>sonatype-nexus-staging</id>
+            <name>Nexus Release Repository</name>
+            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
+        </repository>
+    </distributionManagement>
+
+    <!-- To keep our project layout simple, we're not following the
+         'one Maven way'. Now Maven is inflicting even more redundant
+         redundancy on us. We're stubborn though. -->
+
+    <modules>
+        <module>base</module>
+        <module>gui</module>
+        <module>ant</module>
+        <module>gradle</module>
+        <module>retrace</module>
+    </modules>
+
+    <profiles>
+        <profile>
+            <id>__wtk_plugin_build__</id>
+            <activation>
+                <file>
+                    <exists>${wtk.home}/wtklib/kenv.zip</exists>
+                </file>
+            </activation>
+            <modules>
+                <module>wtk</module>
+            </modules>
+        </profile>
+    </profiles>
+</project>
diff --git a/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom.md5 b/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom.md5
new file mode 100644
index 0000000..ef14d43
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom.md5
@@ -0,0 +1 @@
+fa1b204681aad689d9a93163685336bc
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom.sha1 b/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom.sha1
new file mode 100644
index 0000000..8efb94e
--- /dev/null
+++ b/common/m2/repository/net/sf/proguard/proguard-parent/5.2.1/proguard-parent-5.2.1.pom.sha1
@@ -0,0 +1 @@
+01bc4a2b3094f3e2112e61398e15bfb067841eed
\ No newline at end of file
diff --git a/common/m2/repository/net/sf/proguard/proguard-parent/maven-metadata.xml b/common/m2/repository/net/sf/proguard/proguard-parent/maven-metadata.xml
index 11985da..b757952 100644
--- a/common/m2/repository/net/sf/proguard/proguard-parent/maven-metadata.xml
+++ b/common/m2/repository/net/sf/proguard/proguard-parent/maven-metadata.xml
@@ -2,9 +2,10 @@
 <metadata>
   <groupId>net.sf.proguard</groupId>
   <artifactId>proguard-parent</artifactId>
+  <version>5.2.1</version>
   <versioning>
-    <latest>5.1</latest>
-    <release>5.1</release>
+    <latest>5.2.1</latest>
+    <release>5.2.1</release>
     <versions>
       <version>4.2</version>
       <version>4.3</version>
@@ -19,7 +20,9 @@
       <version>4.11</version>
       <version>5.0</version>
       <version>5.1</version>
+      <version>5.2</version>
+      <version>5.2.1</version>
     </versions>
-    <lastUpdated>20141027203949</lastUpdated>
+    <lastUpdated>20150323215016</lastUpdated>
   </versioning>
 </metadata>
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/3.3/LICENSE b/common/m2/repository/org/easymock/easymock/3.3/LICENSE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/LICENSE
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/common/m2/repository/org/easymock/easymock/3.3/NOTICE b/common/m2/repository/org/easymock/easymock/3.3/NOTICE
new file mode 100644
index 0000000..6e9cf02
--- /dev/null
+++ b/common/m2/repository/org/easymock/easymock/3.3/NOTICE
@@ -0,0 +1,4 @@
+Easymock is from http://easymock.org/
+Contributors: http://easymock.org/contributors.html
+
+See LICENSE file for details.
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/eclipse/jdt/core/compiler/ecj/4.4/NOTICE b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/NOTICE
new file mode 100644
index 0000000..0d347ab
--- /dev/null
+++ b/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/NOTICE
@@ -0,0 +1,224 @@
+
+    Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF
+THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+*1. DEFINITIONS*
+
+"Contribution" means:
+
+a) in the case of the initial Contributor, the initial code and
+documentation distributed under this Agreement, and
+
+b) in the case of each subsequent Contributor:
+
+i) changes to the Program, and
+
+ii) additions to the Program;
+
+where such changes and/or additions to the Program originate from and
+are distributed by that particular Contributor. A Contribution
+'originates' from a Contributor if it was added to the Program by such
+Contributor itself or anyone acting on such Contributor's behalf.
+Contributions do not include additions to the Program which: (i) are
+separate modules of software distributed in conjunction with the Program
+under their own license agreement, and (ii) are not derivative works of
+the Program.
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents" mean patent claims licensable by a Contributor which
+are necessarily infringed by the use or sale of its Contribution alone
+or when combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this
+Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+*2. GRANT OF RIGHTS*
+
+a) Subject to the terms of this Agreement, each Contributor hereby
+grants Recipient a non-exclusive, worldwide, royalty-free copyright
+license to reproduce, prepare derivative works of, publicly display,
+publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and
+object code form.
+
+b) Subject to the terms of this Agreement, each Contributor hereby
+grants Recipient a non-exclusive, worldwide, royalty-free patent license
+under Licensed Patents to make, use, sell, offer to sell, import and
+otherwise transfer the Contribution of such Contributor, if any, in
+source code and object code form. This patent license shall apply to the
+combination of the Contribution and the Program if, at the time the
+Contribution is added by the Contributor, such addition of the
+Contribution causes such combination to be covered by the Licensed
+Patents. The patent license shall not apply to any other combinations
+which include the Contribution. No hardware per se is licensed hereunder.
+
+c) Recipient understands that although each Contributor grants the
+licenses to its Contributions set forth herein, no assurances are
+provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+d) Each Contributor represents that to its knowledge it has sufficient
+copyright rights in its Contribution, if any, to grant the copyright
+license set forth in this Agreement.
+
+*3. REQUIREMENTS*
+
+A Contributor may choose to distribute the Program in object code form
+under its own license agreement, provided that:
+
+a) it complies with the terms and conditions of this Agreement; and
+
+b) its license agreement:
+
+i) effectively disclaims on behalf of all Contributors all warranties
+and conditions, express and implied, including warranties or conditions
+of title and non-infringement, and implied warranties or conditions of
+merchantability and fitness for a particular purpose;
+
+ii) effectively excludes on behalf of all Contributors all liability for
+damages, including direct, indirect, special, incidental and
+consequential damages, such as lost profits;
+
+iii) states that any provisions which differ from this Agreement are
+offered by that Contributor alone and not by any other party; and
+
+iv) states that source code for the Program is available from such
+Contributor, and informs licensees how to obtain it in a reasonable
+manner on or through a medium customarily used for software exchange.
+
+When the Program is made available in source code form:
+
+a) it must be made available under this Agreement; and
+
+b) a copy of this Agreement must be included with each copy of the Program.
+
+Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+*4. COMMERCIAL DISTRIBUTION*
+
+Commercial distributors of software may accept certain responsibilities
+with respect to end users, business partners and the like. While this
+license is intended to facilitate the commercial use of the Program, the
+Contributor who includes the Program in a commercial product offering
+should do so in a manner which does not create potential liability for
+other Contributors. Therefore, if a Contributor includes the Program in
+a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified
+Contributor to the extent caused by the acts or omissions of such
+Commercial Contributor in connection with its distribution of the
+Program in a commercial product offering. The obligations in this
+section do not apply to any claims or Losses relating to any actual or
+alleged intellectual property infringement. In order to qualify, an
+Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial
+Contributor to control, and cooperate with the Commercial Contributor
+in, the defense and any related settlement negotiations. The Indemnified
+Contributor may participate in any such claim at its own expense.
+
+For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+*5. NO WARRANTY*
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED
+ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
+OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR
+A PARTICULAR PURPOSE. Each Recipient is solely responsible for
+determining the appropriateness of using and distributing the Program
+and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program
+errors, compliance with applicable laws, damage to or loss of data,
+programs or equipment, and unavailability or interruption of operations.
+
+*6. DISCLAIMER OF LIABILITY*
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR
+ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+*7. GENERAL*
+
+If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against any entity (including
+a cross-claim or counterclaim in a lawsuit) alleging that the Program
+itself (excluding combinations of the Program with other software or
+hardware) infringes such Recipient's patent(s), then such Recipient's
+rights granted under Section 2(b) shall terminate as of the date such
+litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails
+to comply with any of the material terms or conditions of this Agreement
+and does not cure such failure in a reasonable period of time after
+becoming aware of such noncompliance. If all Recipient's rights under
+this Agreement terminate, Recipient agrees to cease use and distribution
+of the Program as soon as reasonably practicable. However, Recipient's
+obligations under this Agreement and any licenses granted by Recipient
+relating to the Program shall continue and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement,
+but in order to avoid inconsistency the Agreement is copyrighted and may
+only be modified in the following manner. The Agreement Steward reserves
+the right to publish new versions (including revisions) of this
+Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the
+initial Agreement Steward. The Eclipse Foundation may assign the
+responsibility to serve as the Agreement Steward to a suitable separate
+entity. Each new version of the Agreement will be given a distinguishing
+version number. The Program (including Contributions) may always be
+distributed subject to the version of the Agreement under which it was
+received. In addition, after a new version of the Agreement is
+published, Contributor may elect to distribute the Program (including
+its Contributions) under the new version. Except as expressly stated in
+Sections 2(a) and 2(b) above, Recipient receives no rights or licenses
+to the intellectual property of any Contributor under this Agreement,
+whether expressly, by implication, estoppel or otherwise. All rights in
+the Program not expressly granted under this Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to
+this Agreement will bring a legal action under this Agreement more than
+one year after the cause of action arose. Each party waives its rights
+to a jury trial in any resulting litigation.
+
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/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar
new file mode 100644
index 0000000..ce578a0
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar.md5 b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar.md5
new file mode 100644
index 0000000..01c51b9
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar.md5
@@ -0,0 +1 @@
+66abda23c148b2133d7706ec8ef1e3bb
\ No newline at end of file
diff --git a/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar.sha1 b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar.sha1
new file mode 100644
index 0000000..cc538a6
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000-sources.jar.sha1
@@ -0,0 +1 @@
+9b22a01ba9abd71749fa825bc5212f3020150ee2
\ No newline at end of file
diff --git a/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar
new file mode 100644
index 0000000..a17bae1
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar
Binary files differ
diff --git a/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar.md5 b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar.md5
new file mode 100644
index 0000000..e64f2ff
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar.md5
@@ -0,0 +1 @@
+46294c62e4757305cabe0ab7dd2947ca
\ No newline at end of file
diff --git a/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar.sha1 b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar.sha1
new file mode 100644
index 0000000..c93480f
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.jar.sha1
@@ -0,0 +1 @@
+d978c7c4fbb5785dbb5646d7c6f9800198d918b7
\ No newline at end of file
diff --git a/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom
new file mode 100644
index 0000000..7baebb1
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.gradle</groupId>
+  <artifactId>gradle-tooling-api</artifactId>
+  <version>2.4-20150121230028+0000</version>
+  <dependencies>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.7.7</version>
+      <scope>runtime</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom.md5 b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom.md5
new file mode 100644
index 0000000..c656d8f
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom.md5
@@ -0,0 +1 @@
+b4d3e2a759bfa25223b94ee4bc28d201
\ No newline at end of file
diff --git a/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom.sha1 b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom.sha1
new file mode 100644
index 0000000..c43c333
--- /dev/null
+++ b/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/gradle-tooling-api-2.4-20150121230028+0000.pom.sha1
@@ -0,0 +1 @@
+262128321b8bc55b0d29b1209306a1cb82dea042
\ No newline at end of file
diff --git a/common/m2/repository/org/hamcrest/hamcrest-core/1.3/NOTICE b/common/m2/repository/org/hamcrest/hamcrest-core/1.3/NOTICE
new file mode 100644
index 0000000..1b86902
--- /dev/null
+++ b/common/m2/repository/org/hamcrest/hamcrest-core/1.3/NOTICE
@@ -0,0 +1,27 @@
+BSD License

+

+Copyright (c) 2000-2015 www.hamcrest.org

+All rights reserved.

+

+Redistribution and use in source and binary forms, with or without

+modification, are permitted provided that the following conditions are met:

+

+Redistributions of source code must retain the above copyright notice, this list of

+conditions and the following disclaimer. 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.

+

+Neither the name of Hamcrest 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.

diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar
new file mode 100644
index 0000000..796674b
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar.md5
new file mode 100644
index 0000000..11feed5
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar.md5
@@ -0,0 +1 @@
+68e5f180804ff2c5a3f065ded806e437
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar.sha1
new file mode 100644
index 0000000..7adc7b2
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555-sources.jar.sha1
@@ -0,0 +1 @@
+d5bcf3856253fcbe5bf47845c0ca7e08f81d1617
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar
new file mode 100644
index 0000000..d17cf96
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar.md5
new file mode 100644
index 0000000..58f24e8
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar.md5
@@ -0,0 +1 @@
+e1c6c7e6113ba123dcaf1355faca81f3
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar.sha1
new file mode 100644
index 0000000..e0000a5
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.jar.sha1
@@ -0,0 +1 @@
+7b353a3db59f3e31a8bd676bc803a5672f34bfd0
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom
new file mode 100644
index 0000000..50324a8
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.jacoco</groupId>
+    <artifactId>org.jacoco.build</artifactId>
+    <version>0.7.3.201501221555</version>
+    <relativePath>../org.jacoco.build</relativePath>
+  </parent>
+
+  <artifactId>org.jacoco.agent</artifactId>
+
+  <name>JaCoCo :: Agent</name>
+  <description>JaCoCo Agent</description>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>copy</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>${project.groupId}</groupId>
+                  <artifactId>org.jacoco.agent.rt</artifactId>
+                  <classifier>all</classifier>
+                  <version>${project.version}</version>
+                  <destFileName>jacocoagent.jar</destFileName>
+                </artifactItem>
+              </artifactItems>
+              <outputDirectory>${project.build.directory}/classes</outputDirectory>
+              <overWriteReleases>false</overWriteReleases>
+              <overWriteSnapshots>false</overWriteSnapshots>
+              <overWriteIfNewer>true</overWriteIfNewer>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-artifacts</id>
+            <phase>package</phase>
+            <goals>
+              <goal>attach-artifact</goal>
+            </goals>
+            <configuration>
+              <artifacts>
+                <artifact>
+                  <file>${project.build.directory}/classes/jacocoagent.jar</file>
+                  <type>jar</type>
+                  <classifier>runtime</classifier>
+                </artifact>
+              </artifacts>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom.md5
new file mode 100644
index 0000000..353a2b8
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom.md5
@@ -0,0 +1 @@
+47a05b09f4e95b4cf7be2537607dec6d
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom.sha1
new file mode 100644
index 0000000..e60b392
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.3.201501221555/org.jacoco.agent-0.7.3.201501221555.pom.sha1
@@ -0,0 +1 @@
+9686ece20474409adbac94b7d4621b0e07dd5055
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar
new file mode 100644
index 0000000..accb466
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar.md5
new file mode 100644
index 0000000..883f1e1
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar.md5
@@ -0,0 +1 @@
+710206160daf268bd195cef23fd9a2aa
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar.sha1
new file mode 100644
index 0000000..590ccc5
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-sources.jar.sha1
@@ -0,0 +1 @@
+63c281ebc18b19af5ebe8dc2c85427102edcc190
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar
new file mode 100644
index 0000000..809fd43
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar.md5
new file mode 100644
index 0000000..8a4fc41
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar.md5
@@ -0,0 +1 @@
+ab7e8bde4902191b923be4afeaf7a3c4
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar.sha1
new file mode 100644
index 0000000..79b6ede
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.jar.sha1
@@ -0,0 +1 @@
+a579ae4cde66201b73266bfd78fdb50158d179f1
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom
new file mode 100644
index 0000000..7b16918
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.jacoco</groupId>
+    <artifactId>org.jacoco.build</artifactId>
+    <version>0.7.4.201502262128</version>
+    <relativePath>../org.jacoco.build</relativePath>
+  </parent>
+
+  <artifactId>org.jacoco.agent</artifactId>
+
+  <name>JaCoCo :: Agent</name>
+  <description>JaCoCo Agent</description>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>copy</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>${project.groupId}</groupId>
+                  <artifactId>org.jacoco.agent.rt</artifactId>
+                  <classifier>all</classifier>
+                  <version>${project.version}</version>
+                  <destFileName>jacocoagent.jar</destFileName>
+                </artifactItem>
+              </artifactItems>
+              <outputDirectory>${project.build.directory}/classes</outputDirectory>
+              <overWriteReleases>false</overWriteReleases>
+              <overWriteSnapshots>false</overWriteSnapshots>
+              <overWriteIfNewer>true</overWriteIfNewer>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-artifacts</id>
+            <phase>package</phase>
+            <goals>
+              <goal>attach-artifact</goal>
+            </goals>
+            <configuration>
+              <artifacts>
+                <artifact>
+                  <file>${project.build.directory}/classes/jacocoagent.jar</file>
+                  <type>jar</type>
+                  <classifier>runtime</classifier>
+                </artifact>
+              </artifacts>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom.md5
new file mode 100644
index 0000000..84d7141
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom.md5
@@ -0,0 +1 @@
+59ed5de0e77380d2db6204680dccae10
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom.sha1
new file mode 100644
index 0000000..fbab626
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128.pom.sha1
@@ -0,0 +1 @@
+aade4f0e56efabc117db2eae41127c0a6fe637b2
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml b/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml
index d3cec8a..b602f14 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml
@@ -3,8 +3,8 @@
   <groupId>org.jacoco</groupId>
   <artifactId>org.jacoco.agent</artifactId>
   <versioning>
-    <latest>0.7.2.201409121644</latest>
-    <release>0.7.2.201409121644</release>
+    <latest>0.7.4.201502262128</latest>
+    <release>0.7.4.201502262128</release>
     <versions>
       <version>0.5.3.201107060350</version>
       <version>0.5.4.201111111111</version>
@@ -23,7 +23,9 @@
       <version>0.7.0.201403182114</version>
       <version>0.7.1.201405082137</version>
       <version>0.7.2.201409121644</version>
+      <version>0.7.3.201502191951</version>
+      <version>0.7.4.201502262128</version>
     </versions>
-    <lastUpdated>20140913105753</lastUpdated>
+    <lastUpdated>20150227135724</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml.md5 b/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml.md5
index c03110b..8eeaa32 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml.md5
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml.md5
@@ -1 +1 @@
-da9a94d44f1564d902198fd192c5dc04
\ No newline at end of file
+ce35cec28570975cdb503872d9e8ac1e
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml.sha1 b/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml.sha1
index 9ab1d8d..ed9191b 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml.sha1
+++ b/common/m2/repository/org/jacoco/org.jacoco.agent/maven-metadata.xml.sha1
@@ -1 +1 @@
-2517b52029525d6b1c9844cbd09912c07fd2cfa1
\ No newline at end of file
+505c51ea636d32bf3fffffda89c187195330757f
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar
new file mode 100644
index 0000000..f3eb0e7
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar.md5
new file mode 100644
index 0000000..dfb488c
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar.md5
@@ -0,0 +1 @@
+66fcd206046e3f7c2821da2b4a0b0d5e
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar.sha1
new file mode 100644
index 0000000..ce41958
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-nodeps.jar.sha1
@@ -0,0 +1 @@
+b859fba4aae7678d574bf5fc40397c57b41ca89f
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar
new file mode 100644
index 0000000..5b1127e
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar.md5
new file mode 100644
index 0000000..dc4e345
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar.md5
@@ -0,0 +1 @@
+1875311976539926008dbc6427b87d1c
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar.sha1
new file mode 100644
index 0000000..1c292ac
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555-sources.jar.sha1
@@ -0,0 +1 @@
+351263635bc98cf425900aa8112b040a4ac8c9c3
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar
new file mode 100644
index 0000000..dfca218
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar.md5
new file mode 100644
index 0000000..8911dfd
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar.md5
@@ -0,0 +1 @@
+7360e2a803ff8c638f4883c940d94586
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar.sha1
new file mode 100644
index 0000000..efc14c5
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.jar.sha1
@@ -0,0 +1 @@
+a22e7cad2716806e988abe3a2e76cc3be00cb022
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom
new file mode 100644
index 0000000..0e5f6fe
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.jacoco</groupId>
+    <artifactId>org.jacoco.build</artifactId>
+    <version>0.7.3.201501221555</version>
+    <relativePath>../org.jacoco.build</relativePath>
+  </parent>
+
+  <artifactId>org.jacoco.ant</artifactId>
+
+  <name>JaCoCo :: Ant</name>
+  <description>JaCoCo Ant Tasks</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>org.jacoco.core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>org.jacoco.report</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>org.jacoco.agent</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <shadedArtifactAttached>true</shadedArtifactAttached>
+              <shadedClassifierName>nodeps</shadedClassifierName>
+              <minimizeJar>true</minimizeJar>
+              <relocations>
+                <relocation>
+                  <pattern>org.objectweb.asm</pattern>
+                  <shadedPattern>org.jacoco.asm</shadedPattern>
+                </relocation>
+              </relocations>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom.md5
new file mode 100644
index 0000000..8b978d2
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom.md5
@@ -0,0 +1 @@
+b6abbad5fbcc417deeec3ebd0b893a29
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom.sha1
new file mode 100644
index 0000000..c474b4c
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/org.jacoco.ant-0.7.3.201501221555.pom.sha1
@@ -0,0 +1 @@
+59c5915c684572fcd3320122f91ebc6f3a8eb6c7
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar
new file mode 100644
index 0000000..764f0c4
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar.md5
new file mode 100644
index 0000000..2e0b097
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar.md5
@@ -0,0 +1 @@
+dbf2b9ebd5872b6f908d983ec419c524
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar.sha1
new file mode 100644
index 0000000..ecf56b6
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128-sources.jar.sha1
@@ -0,0 +1 @@
+e82e647c623777c675e46e5698b775d58d4910b8
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar
new file mode 100644
index 0000000..4f82377
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar.md5
new file mode 100644
index 0000000..280e7de
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar.md5
@@ -0,0 +1 @@
+afdcf07c13074b2a433b1974b920288d
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar.sha1
new file mode 100644
index 0000000..3131616
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.jar.sha1
@@ -0,0 +1 @@
+e8808120e50c1f2e830ff26cbfacbf3f018441b7
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom
new file mode 100644
index 0000000..8465f9b
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.jacoco</groupId>
+    <artifactId>org.jacoco.build</artifactId>
+    <version>0.7.4.201502262128</version>
+    <relativePath>../org.jacoco.build</relativePath>
+  </parent>
+
+  <artifactId>org.jacoco.ant</artifactId>
+
+  <name>JaCoCo :: Ant</name>
+  <description>JaCoCo Ant Tasks</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>org.jacoco.core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>org.jacoco.report</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>org.jacoco.agent</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <shadedArtifactAttached>true</shadedArtifactAttached>
+              <shadedClassifierName>nodeps</shadedClassifierName>
+              <minimizeJar>true</minimizeJar>
+              <relocations>
+                <relocation>
+                  <pattern>org.objectweb.asm</pattern>
+                  <shadedPattern>org.jacoco.asm</shadedPattern>
+                </relocation>
+              </relocations>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom.md5
new file mode 100644
index 0000000..7c79f62
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom.md5
@@ -0,0 +1 @@
+7d87784f405c5c877f0c7357c696cda3
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom.sha1
new file mode 100644
index 0000000..22349d2
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/org.jacoco.ant-0.7.4.201502262128.pom.sha1
@@ -0,0 +1 @@
+af43bce3eb6f2ead0c84b4b491d18dd81ce93af9
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml b/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml
index 87a4320..0789e94 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml
@@ -3,8 +3,8 @@
   <groupId>org.jacoco</groupId>
   <artifactId>org.jacoco.ant</artifactId>
   <versioning>
-    <latest>0.7.2.201409121644</latest>
-    <release>0.7.2.201409121644</release>
+    <latest>0.7.4.201502262128</latest>
+    <release>0.7.4.201502262128</release>
     <versions>
       <version>0.5.3.201107060350</version>
       <version>0.5.4.201111111111</version>
@@ -23,7 +23,9 @@
       <version>0.7.0.201403182114</version>
       <version>0.7.1.201405082137</version>
       <version>0.7.2.201409121644</version>
+      <version>0.7.3.201502191951</version>
+      <version>0.7.4.201502262128</version>
     </versions>
-    <lastUpdated>20140913105754</lastUpdated>
+    <lastUpdated>20150227135724</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml.md5 b/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml.md5
index 0c20de8..c04264f 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml.md5
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml.md5
@@ -1 +1 @@
-0613acbd22be3537c0f23777f8a653e0
\ No newline at end of file
+ca9215a40bfd0a8d9647fb79f6d21089
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml.sha1 b/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml.sha1
index 7634807..674ae92 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml.sha1
+++ b/common/m2/repository/org/jacoco/org.jacoco.ant/maven-metadata.xml.sha1
@@ -1 +1 @@
-c972130473547800c547b741de93c087c165b9c8
\ No newline at end of file
+37091ca0b4223168caf09cbdc788078e317a1b35
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom
new file mode 100644
index 0000000..515bcfe
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom
@@ -0,0 +1,1024 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.jacoco</groupId>
+  <artifactId>org.jacoco.build</artifactId>
+  <version>0.7.3.201501221555</version>
+  <packaging>pom</packaging>
+
+  <name>JaCoCo</name>
+  <description>JaCoCo - Java Code Coverage Library</description>
+  <url>http://jacoco.org</url>
+  <inceptionYear>2009</inceptionYear>
+  <organization>
+    <name>Mountainminds GmbH &amp; Co. KG</name>
+  </organization>
+  <licenses>
+    <license>
+      <name>Eclipse Public License v1.0</name>
+      <url>http://www.eclipse.org/legal/epl-v10.html</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <id>mtnminds</id>
+      <name>Marc R. Hoffmann</name>
+      <email>hoffmann@mountainminds.com</email>
+      <timezone>+1</timezone>
+      <roles>
+        <role>Project Lead</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>brock_j</id>
+      <name>Brock Janiczak</name>
+      <email>brockj@gmail.com</email>
+      <timezone>+10</timezone>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>mandrikov</id>
+      <name>Evgeny Mandrikov</name>
+      <email>mandrikov@gmail.com</email>
+      <url>http://godin.net.ru</url>
+      <organization>SonarSource</organization>
+      <organizationUrl>http://www.sonarsource.com</organizationUrl>
+      <timezone>+3</timezone>
+      <roles>
+        <role>Build and release manager</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>mfriedenhagen</id>
+      <name>Mirko Friedenhagen</name>
+      <email>mfriedenhagen@gmail.com</email>
+      <timezone>+1</timezone>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+  </developers>
+
+  <contributors>
+    <contributor>
+      <name>Radek Liba</name>
+    </contributor>
+    <contributor>
+      <name>Christoph Beck</name>
+    </contributor>
+  </contributors>
+
+  <modules>
+    <!-- Order is important: org.jacoco.agent.rt embeds into org.jacoco.agent and JaCoCo Agent used during tests -->
+    <module>../org.jacoco.core</module>
+    <module>../org.jacoco.report</module>
+    <module>../org.jacoco.agent.rt</module>
+    <module>../org.jacoco.agent</module>
+    <module>../org.jacoco.ant</module>
+
+    <module>../jacoco-maven-plugin</module>
+
+    <module>../org.jacoco.tests</module>
+
+    <module>../org.jacoco.examples</module>
+    <module>../org.jacoco.doc</module>
+    <module>../jacoco</module>
+  </modules>
+
+  <scm>
+    <connection>scm:git:git://github.com/jacoco/jacoco.git</connection>
+    <developerConnection>scm:git:ssh://git@github.com:jacoco/jacoco.git</developerConnection>
+    <url>https://github.com/jacoco/jacoco</url>
+  </scm>
+  <issueManagement>
+    <system>GitHub</system>
+    <url>https://github.com/jacoco/jacoco/issues</url>
+  </issueManagement>
+  <distributionManagement>
+    <repository>
+      <id>sonatype-nexus-staging</id>
+      <name>Nexus Release Repository</name>
+      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+    </repository>
+    <snapshotRepository>
+      <id>sonatype-nexus-snapshots</id>
+      <name>Sonatype Nexus Snapshots</name>
+      <url>${sonatypeOssDistMgmtSnapshotsUrl}</url>
+    </snapshotRepository>
+  </distributionManagement>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
+
+    <maven.build.timestamp.format>yyyyMMddhhmm</maven.build.timestamp.format>
+    <jacoco.home.url>http://www.eclemma.org/jacoco</jacoco.home.url>
+    <copyright.years>${project.inceptionYear}, 2015</copyright.years>
+
+    <jvm.args></jvm.args>
+    <argLine>${jvm.args}</argLine>
+
+    <!-- Dependencies versions -->
+    <asm.version>5.0.1</asm.version>
+    <ant.version>1.7.1</ant.version>
+    <junit.version>4.8.2</junit.version>
+
+    <!-- ================== -->
+    <!-- For Sonar analysis -->
+    <!-- ================== -->
+    <sonar.skippedModules>org.jacoco.tests,org.jacoco.doc</sonar.skippedModules>
+
+    <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
+    <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
+    <sonar.jacoco.reportPath>../${project.artifactId}.test/target/jacoco.exec</sonar.jacoco.reportPath>
+    <sonar.surefire.reportsPath>../${project.artifactId}.test/target/surefire-reports/</sonar.surefire.reportsPath>
+
+    <!-- See http://jira.codehaus.org/browse/SONAR-2096 -->
+    <sonar.java.source>1.5</sonar.java.source>
+    <sonar.java.target>1.5</sonar.java.target>
+  </properties>
+
+  <dependencyManagement>
+    <dependencies>
+      <!-- Project dependencies -->
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.core</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.report</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.agent</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.agent</artifactId>
+        <classifier>runtime</classifier>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.agent.rt</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.ant</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.ant</artifactId>
+        <classifier>nodeps</classifier>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.examples</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <!-- Third-party dependencies -->
+      <dependency>
+        <groupId>org.ow2.asm</groupId>
+        <artifactId>asm-debug-all</artifactId>
+        <version>${asm.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ant</groupId>
+        <artifactId>ant</artifactId>
+        <version>${ant.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ant</groupId>
+        <artifactId>ant-junit</artifactId>
+        <version>${ant.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ant</groupId>
+        <artifactId>ant-antunit</artifactId>
+        <version>1.2</version>
+      </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>${junit.version}</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>src</directory>
+        <filtering>false</filtering>
+        <excludes>
+          <exclude>**/*.java</exclude>
+          <exclude>**/*.properties</exclude>
+        </excludes>
+      </resource>
+      <resource>
+        <directory>src</directory>
+        <filtering>true</filtering>
+        <includes>
+          <include>**/*.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>.</directory>
+        <filtering>true</filtering>
+        <includes>
+          <include>about.html</include>
+        </includes>
+      </resource>
+    </resources>
+
+    <pluginManagement>
+      <plugins>
+        <!-- Apache plugins -->
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-antrun-plugin</artifactId>
+          <version>1.6</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>2.2.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>2.4.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>2.3.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-dependency-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <version>2.8.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-enforcer-plugin</artifactId>
+          <version>1.0.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-install-plugin</artifactId>
+          <version>2.3.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-invoker-plugin</artifactId>
+          <version>1.8</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-gpg-plugin</artifactId>
+          <version>1.3</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>2.3.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jarsigner-plugin</artifactId>
+          <version>1.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.8</version>
+          <configuration>
+            <quiet>true</quiet>
+            <detectOfflineLinks>false</detectOfflineLinks>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-plugin-plugin</artifactId>
+          <version>3.3</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-release-plugin</artifactId>
+          <version>2.1</version>
+          <configuration>
+            <autoVersionSubmodules>true</autoVersionSubmodules>
+            <mavenExecutorId>forked-path</mavenExecutorId> 
+            <useReleaseProfile>false</useReleaseProfile>
+            <!--
+            Allows to activate release profile during release.
+            We don't use releaseProfiles parameter, because it affects only release:perform goal
+            -->
+            <arguments>-Prelease</arguments>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>2.5</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-shade-plugin</artifactId>
+          <version>1.4</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-source-plugin</artifactId>
+          <version>2.1.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.9</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>3.3</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-toolchains-plugin</artifactId>
+          <version>1.0</version>
+        </plugin>
+        <!-- Mojo plugins -->
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>animal-sniffer-maven-plugin</artifactId>
+          <version>1.6</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>build-helper-maven-plugin</artifactId>
+          <version>1.5</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>buildnumber-maven-plugin</artifactId>
+          <version>1.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>xml-maven-plugin</artifactId>
+          <version>1.0</version>
+        </plugin>
+        <!-- Third-party plugins -->
+        <plugin>
+          <groupId>org.codehaus.groovy.maven</groupId>
+          <artifactId>gmaven-plugin</artifactId>
+          <version>1.0</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <testSourceDirectory>${project.build.sourceDirectory}</testSourceDirectory>
+          <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-resources-plugin</artifactId>
+        <configuration>
+          <!-- We can't use delimiters "${*}" and "$*$" together - probably it's bug in plugin -->
+          <!-- so for now we will define only our delimiters in compliance with https://sourceforge.net/apps/trac/eclemma/changeset/1229 -->
+          <!-- but it would be better to use defaults -->
+          <useDefaultDelimiters>false</useDefaultDelimiters>
+          <delimiters>
+            <delimiter>@*@</delimiter>
+            <delimiter>$*$</delimiter>
+          </delimiters>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <configuration>
+          <filters>
+            <!-- Don't include signatures -->
+            <filter>
+              <artifact>*:*</artifact>
+              <excludes>
+                <exclude>META-INF/*.SF</exclude>
+                <exclude>META-INF/*.DSA</exclude>
+                <exclude>META-INF/*.RSA</exclude>
+              </excludes>
+            </filter>
+          </filters>
+          <transformers>
+            <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+              <manifestEntries>
+                <Implementation-Title>${project.description}</Implementation-Title>
+                <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
+                <Implementation-Version>${project.version}</Implementation-Version>
+              </manifestEntries>
+            </transformer>
+          </transformers>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <archiverConfig>
+            <!-- Workaround for http://jira.codehaus.org/browse/MASSEMBLY-422 -->
+            <!-- 420(dec) = 644(oct) -->
+            <fileMode>420</fileMode>
+            <!-- 493(dec) = 755(oct) -->
+            <directoryMode>493</directoryMode>
+            <defaultDirectoryMode>493</defaultDirectoryMode>
+          </archiverConfig>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>enforce</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+            <configuration>
+              <rules>
+                <requireNoRepositories>
+                  <message>The rules for repo1.maven.org are that pom.xml files should not include repository definitions.</message>
+                  <banRepositories>true</banRepositories>
+                  <banPluginRepositories>true</banPluginRepositories>
+                </requireNoRepositories>
+                <requireReleaseDeps>
+                  <message>No SNAPSHOT versions allowed for dependencies</message>
+                  <onlyWhenRelease>true</onlyWhenRelease>
+                </requireReleaseDeps>
+                <requireMavenVersion>
+                  <!-- Maven 3.0.3 contains bug - see http://jira.codehaus.org/browse/MINVOKER-107 -->
+                  <version>[2.2.1,3.0.0),[3.0.4,)</version>
+                </requireMavenVersion>
+              </rules>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>check-license-header</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <target>
+                <fileset dir="${basedir}" includes="**/*.java,**/*.xml,**/*.bsh" excludes="target/**,.idea/**,nb-configuration.xml" id="missinglicense.fileset">
+                  <not>
+                    <and>
+                      <contains text="Copyright (c) 2009, 2015 Mountainminds GmbH &amp; Co. KG and Contributors"/>
+                      <contains text="All rights reserved. This program and the accompanying materials"/>
+                      <contains text="are made available under the terms of the Eclipse Public License v1.0"/>
+                      <contains text="which accompanies this distribution, and is available at"/>
+                      <contains text="http://www.eclipse.org/legal/epl-v10.html"/>
+                    </and>
+                  </not>
+                </fileset>
+                <pathconvert property="missing" refid="missinglicense.fileset"/>
+                <fail message="Invalid license info in: ${missing}">
+                  <condition>
+                    <not>
+                      <equals arg1="${missing}" arg2=""/>
+                    </not>
+                  </condition>
+                </fail>
+              </target>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>parse-version</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>parse-version</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>buildnumber-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>create</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <doCheck>false</doCheck>
+          <doUpdate>false</doUpdate>
+          <getRevisionOnlyOnce>true</getRevisionOnlyOnce>
+          <revisionOnScmFailure>0000000</revisionOnScmFailure>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.groovy.maven</groupId>
+        <artifactId>gmaven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>parse-version</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>execute</goal>
+            </goals>
+            <configuration>
+              <source>
+                major = project.properties['parsedVersion.majorVersion']
+                minor = project.properties['parsedVersion.minorVersion']
+                incremental = project.properties['parsedVersion.incrementalVersion']
+                qualifier = "${maven.build.timestamp}"
+                project.properties['buildQualifier'] = qualifier
+                project.properties['unqualifiedVersion'] = major + '.' + minor + '.' + incremental
+                project.properties['qualified.bundle.version'] = project.properties['unqualifiedVersion'] + '.' + project.properties['buildQualifier']
+                project.properties['build.date'] = qualifier.substring(0, 4) + '/' + qualifier.substring(4, 6) + '/' + qualifier.substring(6, 8)
+                buildNumber = project.properties['buildNumber']
+                project.properties['jacoco.runtime.package.name'] = "org.jacoco.agent.rt.internal_" + buildNumber.substring(buildNumber.length() - 7, buildNumber.length())
+              </source>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <!-- This profile is used to launch tests with different JDK versions. -->
+    <profile>
+      <id>integration-tests</id>
+      <activation>
+        <property>
+          <name>jdk.version</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <!-- See http://maven.apache.org/guides/mini/guide-using-toolchains.html -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-toolchains-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>validate</phase>
+                <goals>
+                  <goal>toolchain</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+              <toolchains>
+                <jdk>
+                  <version>${jdk.version}</version>
+                </jdk>
+              </toolchains>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!-- This profile is used to launch tests with compilation into specific bytecode version. -->
+    <profile>
+      <id>bytecode</id>
+      <activation>
+        <property>
+          <name>bytecode.version</name>
+        </property>
+      </activation>
+      <properties>
+        <maven.compiler.source>${bytecode.version}</maven.compiler.source>
+        <maven.compiler.target>${bytecode.version}</maven.compiler.target>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>jdk16</id>
+      <activation>
+        <property>
+          <name>jdk.version</name>
+          <value>1.6</value>
+        </property>
+      </activation>
+      <properties>
+        <jvm.args>-XX:-FailOverToOldVerifier -Xverify:all</jvm.args>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>jdk17</id>
+      <activation>
+        <property>
+          <name>jdk.version</name>
+          <value>1.7</value>
+        </property>
+      </activation>
+      <properties>
+        <jvm.args>-XX:-FailOverToOldVerifier -Xverify:all</jvm.args>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>jdk18</id>
+      <activation>
+        <property>
+          <name>jdk.version</name>
+          <value>1.8</value>
+        </property>
+      </activation>
+      <properties>
+        <jvm.args>-XX:-FailOverToOldVerifier -Xverify:all</jvm.args>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>sign</id>
+      <activation>
+        <property>
+          <name>jarsigner.alias</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jarsigner-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>sign</id>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+                <configuration>
+                  <arguments>
+                    <!-- TODO Godin: there is no parameters for TSA in plugin, so we use workaround - see http://jira.codehaus.org/browse/MJARSIGNER-16 -->
+                    <argument>-tsa</argument>
+                    <argument>${jarsigner.tsa}</argument>
+                    <argument>-tsacert</argument>
+                    <argument>${jarsigner.tsacert}</argument>
+                  </arguments>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <profile>
+      <id>manifest</id>
+      <activation>
+        <file>
+          <exists>META-INF/MANIFEST.MF</exists>
+        </file>
+      </activation>
+      <properties>
+        <bundle-manifest>${project.build.directory}/META-INF/MANIFEST.MF</bundle-manifest>
+      </properties>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>translate-qualifier</id>
+                <phase>generate-resources</phase>
+                <configuration>
+                  <target>
+                    <copy file="META-INF/MANIFEST.MF" tofile="${bundle-manifest}" overwrite="true"/>
+                    <replace file="${bundle-manifest}">
+                      <replacefilter token=".qualifier" value=".${buildQualifier}"/>
+                    </replace>
+                  </target>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jar-plugin</artifactId>
+            <configuration>
+              <archive>
+                <manifestFile>${bundle-manifest}</manifestFile>
+                <manifestEntries>
+                  <Eclipse-SourceReferences>scm:git:git://github.com/jacoco/jacoco.git;path="${project.artifactId}";commitId=${buildNumber}</Eclipse-SourceReferences>
+                </manifestEntries>
+              </archive>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <profile>
+      <id>sources</id>
+      <activation>
+        <file>
+          <exists>src/</exists>
+        </file>
+      </activation>
+      <build>
+        <plugins>
+          <!-- Generates jar with sources -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>jar-no-fork</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <!-- Generates Javadoc -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!-- This profile is activated when a project is released. -->
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-enforcer-plugin</artifactId>
+            <inherited>false</inherited>
+            <executions>
+              <execution>
+                <id>enforce-release-rules</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>enforce</goal>
+                </goals>
+                <configuration>
+                  <rules>
+                    <!--
+                    <requireActiveProfile>
+                      <message>You must sign JARs during release.</message>
+                      <profiles>sign</profiles>
+                    </requireActiveProfile>
+                    -->
+                    <requireReleaseVersion/>
+                    <requireProperty>
+                      <property>buildNumber</property>
+                      <regex>[0-9a-f]{40}</regex>
+                    </requireProperty>
+                  </rules>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <!-- Checks compatibility with Java API -->
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>animal-sniffer-maven-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>enforce-java-api-compatibility</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+                <configuration>
+                  <signature>
+                    <groupId>org.codehaus.mojo.signature</groupId>
+                    <artifactId>java15</artifactId>
+                    <version>1.0</version>
+                  </signature>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <!-- Signs artifacts -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!-- This profile is active only when used from Eclipse m2e and is used only to store settings. -->
+    <profile>
+      <id>m2e</id>
+      <activation>
+        <property>
+          <name>m2e.version</name>
+        </property>
+      </activation>
+      <build>
+        <pluginManagement>
+          <plugins>
+            <!--This plugin's 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>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-antrun-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>run</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-invoker-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>install</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-dependency-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>unpack</goal>
+                          <goal>copy-dependencies</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.codehaus.groovy.maven</groupId>
+                        <artifactId>gmaven-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>execute</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>xml-maven-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>transform</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.jacoco</groupId>
+                        <artifactId>jacoco-maven-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>prepare-agent</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-enforcer-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>enforce</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>build-helper-maven-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>parse-version</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                  </pluginExecutions>
+                </lifecycleMappingMetadata>
+              </configuration>
+            </plugin>
+          </plugins>
+        </pluginManagement>
+      </build>
+    </profile>
+  </profiles>
+
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom.md5
new file mode 100644
index 0000000..baec529
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom.md5
@@ -0,0 +1 @@
+4bd8c06702bd058fc7b55f0735bac90b
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom.sha1
new file mode 100644
index 0000000..791e1c0
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.3.201501221555/org.jacoco.build-0.7.3.201501221555.pom.sha1
@@ -0,0 +1 @@
+0f9199961674b542c661ef4a01e45e115da96cf1
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom
new file mode 100644
index 0000000..669f2cd
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom
@@ -0,0 +1,1024 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.jacoco</groupId>
+  <artifactId>org.jacoco.build</artifactId>
+  <version>0.7.4.201502262128</version>
+  <packaging>pom</packaging>
+
+  <name>JaCoCo</name>
+  <description>JaCoCo - Java Code Coverage Library</description>
+  <url>http://jacoco.org</url>
+  <inceptionYear>2009</inceptionYear>
+  <organization>
+    <name>Mountainminds GmbH &amp; Co. KG</name>
+  </organization>
+  <licenses>
+    <license>
+      <name>Eclipse Public License v1.0</name>
+      <url>http://www.eclipse.org/legal/epl-v10.html</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <id>mtnminds</id>
+      <name>Marc R. Hoffmann</name>
+      <email>hoffmann@mountainminds.com</email>
+      <timezone>+1</timezone>
+      <roles>
+        <role>Project Lead</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>brock_j</id>
+      <name>Brock Janiczak</name>
+      <email>brockj@gmail.com</email>
+      <timezone>+10</timezone>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>mandrikov</id>
+      <name>Evgeny Mandrikov</name>
+      <email>mandrikov@gmail.com</email>
+      <url>http://godin.net.ru</url>
+      <organization>SonarSource</organization>
+      <organizationUrl>http://www.sonarsource.com</organizationUrl>
+      <timezone>+3</timezone>
+      <roles>
+        <role>Build and release manager</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>mfriedenhagen</id>
+      <name>Mirko Friedenhagen</name>
+      <email>mfriedenhagen@gmail.com</email>
+      <timezone>+1</timezone>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>
+  </developers>
+
+  <contributors>
+    <contributor>
+      <name>Radek Liba</name>
+    </contributor>
+    <contributor>
+      <name>Christoph Beck</name>
+    </contributor>
+  </contributors>
+
+  <modules>
+    <!-- Order is important: org.jacoco.agent.rt embeds into org.jacoco.agent and JaCoCo Agent used during tests -->
+    <module>../org.jacoco.core</module>
+    <module>../org.jacoco.report</module>
+    <module>../org.jacoco.agent.rt</module>
+    <module>../org.jacoco.agent</module>
+    <module>../org.jacoco.ant</module>
+
+    <module>../jacoco-maven-plugin</module>
+
+    <module>../org.jacoco.tests</module>
+
+    <module>../org.jacoco.examples</module>
+    <module>../org.jacoco.doc</module>
+    <module>../jacoco</module>
+  </modules>
+
+  <scm>
+    <connection>scm:git:git://github.com/jacoco/jacoco.git</connection>
+    <developerConnection>scm:git:ssh://git@github.com:jacoco/jacoco.git</developerConnection>
+    <url>https://github.com/jacoco/jacoco</url>
+  </scm>
+  <issueManagement>
+    <system>GitHub</system>
+    <url>https://github.com/jacoco/jacoco/issues</url>
+  </issueManagement>
+  <distributionManagement>
+    <repository>
+      <id>sonatype-nexus-staging</id>
+      <name>Nexus Release Repository</name>
+      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+    </repository>
+    <snapshotRepository>
+      <id>sonatype-nexus-snapshots</id>
+      <name>Sonatype Nexus Snapshots</name>
+      <url>${sonatypeOssDistMgmtSnapshotsUrl}</url>
+    </snapshotRepository>
+  </distributionManagement>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
+
+    <maven.build.timestamp.format>yyyyMMddhhmm</maven.build.timestamp.format>
+    <jacoco.home.url>http://www.eclemma.org/jacoco</jacoco.home.url>
+    <copyright.years>${project.inceptionYear}, 2015</copyright.years>
+
+    <jvm.args></jvm.args>
+    <argLine>${jvm.args}</argLine>
+
+    <!-- Dependencies versions -->
+    <asm.version>5.0.1</asm.version>
+    <ant.version>1.7.1</ant.version>
+    <junit.version>4.8.2</junit.version>
+
+    <!-- ================== -->
+    <!-- For Sonar analysis -->
+    <!-- ================== -->
+    <sonar.skippedModules>org.jacoco.tests,org.jacoco.doc</sonar.skippedModules>
+
+    <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
+    <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
+    <sonar.jacoco.reportPath>../${project.artifactId}.test/target/jacoco.exec</sonar.jacoco.reportPath>
+    <sonar.surefire.reportsPath>../${project.artifactId}.test/target/surefire-reports/</sonar.surefire.reportsPath>
+
+    <!-- See http://jira.codehaus.org/browse/SONAR-2096 -->
+    <sonar.java.source>1.5</sonar.java.source>
+    <sonar.java.target>1.5</sonar.java.target>
+  </properties>
+
+  <dependencyManagement>
+    <dependencies>
+      <!-- Project dependencies -->
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.core</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.report</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.agent</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.agent</artifactId>
+        <classifier>runtime</classifier>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.agent.rt</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.ant</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.ant</artifactId>
+        <classifier>nodeps</classifier>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>org.jacoco.examples</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <!-- Third-party dependencies -->
+      <dependency>
+        <groupId>org.ow2.asm</groupId>
+        <artifactId>asm-debug-all</artifactId>
+        <version>${asm.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ant</groupId>
+        <artifactId>ant</artifactId>
+        <version>${ant.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ant</groupId>
+        <artifactId>ant-junit</artifactId>
+        <version>${ant.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ant</groupId>
+        <artifactId>ant-antunit</artifactId>
+        <version>1.2</version>
+      </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>${junit.version}</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>src</directory>
+        <filtering>false</filtering>
+        <excludes>
+          <exclude>**/*.java</exclude>
+          <exclude>**/*.properties</exclude>
+        </excludes>
+      </resource>
+      <resource>
+        <directory>src</directory>
+        <filtering>true</filtering>
+        <includes>
+          <include>**/*.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>.</directory>
+        <filtering>true</filtering>
+        <includes>
+          <include>about.html</include>
+        </includes>
+      </resource>
+    </resources>
+
+    <pluginManagement>
+      <plugins>
+        <!-- Apache plugins -->
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-antrun-plugin</artifactId>
+          <version>1.6</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>2.2.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>2.4.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>2.3.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-dependency-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <version>2.8.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-enforcer-plugin</artifactId>
+          <version>1.0.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-install-plugin</artifactId>
+          <version>2.3.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-invoker-plugin</artifactId>
+          <version>1.8</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-gpg-plugin</artifactId>
+          <version>1.3</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>2.3.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jarsigner-plugin</artifactId>
+          <version>1.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.8</version>
+          <configuration>
+            <quiet>true</quiet>
+            <detectOfflineLinks>false</detectOfflineLinks>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-plugin-plugin</artifactId>
+          <version>3.3</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-release-plugin</artifactId>
+          <version>2.1</version>
+          <configuration>
+            <autoVersionSubmodules>true</autoVersionSubmodules>
+            <mavenExecutorId>forked-path</mavenExecutorId> 
+            <useReleaseProfile>false</useReleaseProfile>
+            <!--
+            Allows to activate release profile during release.
+            We don't use releaseProfiles parameter, because it affects only release:perform goal
+            -->
+            <arguments>-Prelease</arguments>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>2.5</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-shade-plugin</artifactId>
+          <version>1.4</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-source-plugin</artifactId>
+          <version>2.1.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.9</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>3.3</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-toolchains-plugin</artifactId>
+          <version>1.0</version>
+        </plugin>
+        <!-- Mojo plugins -->
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>animal-sniffer-maven-plugin</artifactId>
+          <version>1.6</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>build-helper-maven-plugin</artifactId>
+          <version>1.5</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>buildnumber-maven-plugin</artifactId>
+          <version>1.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>xml-maven-plugin</artifactId>
+          <version>1.0</version>
+        </plugin>
+        <!-- Third-party plugins -->
+        <plugin>
+          <groupId>org.codehaus.groovy.maven</groupId>
+          <artifactId>gmaven-plugin</artifactId>
+          <version>1.0</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <testSourceDirectory>${project.build.sourceDirectory}</testSourceDirectory>
+          <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-resources-plugin</artifactId>
+        <configuration>
+          <!-- We can't use delimiters "${*}" and "$*$" together - probably it's bug in plugin -->
+          <!-- so for now we will define only our delimiters in compliance with https://sourceforge.net/apps/trac/eclemma/changeset/1229 -->
+          <!-- but it would be better to use defaults -->
+          <useDefaultDelimiters>false</useDefaultDelimiters>
+          <delimiters>
+            <delimiter>@*@</delimiter>
+            <delimiter>$*$</delimiter>
+          </delimiters>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <configuration>
+          <filters>
+            <!-- Don't include signatures -->
+            <filter>
+              <artifact>*:*</artifact>
+              <excludes>
+                <exclude>META-INF/*.SF</exclude>
+                <exclude>META-INF/*.DSA</exclude>
+                <exclude>META-INF/*.RSA</exclude>
+              </excludes>
+            </filter>
+          </filters>
+          <transformers>
+            <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+              <manifestEntries>
+                <Implementation-Title>${project.description}</Implementation-Title>
+                <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
+                <Implementation-Version>${project.version}</Implementation-Version>
+              </manifestEntries>
+            </transformer>
+          </transformers>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <archiverConfig>
+            <!-- Workaround for http://jira.codehaus.org/browse/MASSEMBLY-422 -->
+            <!-- 420(dec) = 644(oct) -->
+            <fileMode>420</fileMode>
+            <!-- 493(dec) = 755(oct) -->
+            <directoryMode>493</directoryMode>
+            <defaultDirectoryMode>493</defaultDirectoryMode>
+          </archiverConfig>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>enforce</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+            <configuration>
+              <rules>
+                <requireNoRepositories>
+                  <message>The rules for repo1.maven.org are that pom.xml files should not include repository definitions.</message>
+                  <banRepositories>true</banRepositories>
+                  <banPluginRepositories>true</banPluginRepositories>
+                </requireNoRepositories>
+                <requireReleaseDeps>
+                  <message>No SNAPSHOT versions allowed for dependencies</message>
+                  <onlyWhenRelease>true</onlyWhenRelease>
+                </requireReleaseDeps>
+                <requireMavenVersion>
+                  <!-- Maven 3.0.3 contains bug - see http://jira.codehaus.org/browse/MINVOKER-107 -->
+                  <version>[2.2.1,3.0.0),[3.0.4,)</version>
+                </requireMavenVersion>
+              </rules>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>check-license-header</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <target>
+                <fileset dir="${basedir}" includes="**/*.java,**/*.xml,**/*.bsh" excludes="target/**,.idea/**,nb-configuration.xml" id="missinglicense.fileset">
+                  <not>
+                    <and>
+                      <contains text="Copyright (c) 2009, 2015 Mountainminds GmbH &amp; Co. KG and Contributors"/>
+                      <contains text="All rights reserved. This program and the accompanying materials"/>
+                      <contains text="are made available under the terms of the Eclipse Public License v1.0"/>
+                      <contains text="which accompanies this distribution, and is available at"/>
+                      <contains text="http://www.eclipse.org/legal/epl-v10.html"/>
+                    </and>
+                  </not>
+                </fileset>
+                <pathconvert property="missing" refid="missinglicense.fileset"/>
+                <fail message="Invalid license info in: ${missing}">
+                  <condition>
+                    <not>
+                      <equals arg1="${missing}" arg2=""/>
+                    </not>
+                  </condition>
+                </fail>
+              </target>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>parse-version</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>parse-version</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>buildnumber-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>create</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <doCheck>false</doCheck>
+          <doUpdate>false</doUpdate>
+          <getRevisionOnlyOnce>true</getRevisionOnlyOnce>
+          <revisionOnScmFailure>0000000</revisionOnScmFailure>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.groovy.maven</groupId>
+        <artifactId>gmaven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>parse-version</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>execute</goal>
+            </goals>
+            <configuration>
+              <source>
+                major = project.properties['parsedVersion.majorVersion']
+                minor = project.properties['parsedVersion.minorVersion']
+                incremental = project.properties['parsedVersion.incrementalVersion']
+                qualifier = "${maven.build.timestamp}"
+                project.properties['buildQualifier'] = qualifier
+                project.properties['unqualifiedVersion'] = major + '.' + minor + '.' + incremental
+                project.properties['qualified.bundle.version'] = project.properties['unqualifiedVersion'] + '.' + project.properties['buildQualifier']
+                project.properties['build.date'] = qualifier.substring(0, 4) + '/' + qualifier.substring(4, 6) + '/' + qualifier.substring(6, 8)
+                buildNumber = project.properties['buildNumber']
+                project.properties['jacoco.runtime.package.name'] = "org.jacoco.agent.rt.internal_" + buildNumber.substring(buildNumber.length() - 7, buildNumber.length())
+              </source>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <!-- This profile is used to launch tests with different JDK versions. -->
+    <profile>
+      <id>integration-tests</id>
+      <activation>
+        <property>
+          <name>jdk.version</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <!-- See http://maven.apache.org/guides/mini/guide-using-toolchains.html -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-toolchains-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>validate</phase>
+                <goals>
+                  <goal>toolchain</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+              <toolchains>
+                <jdk>
+                  <version>${jdk.version}</version>
+                </jdk>
+              </toolchains>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!-- This profile is used to launch tests with compilation into specific bytecode version. -->
+    <profile>
+      <id>bytecode</id>
+      <activation>
+        <property>
+          <name>bytecode.version</name>
+        </property>
+      </activation>
+      <properties>
+        <maven.compiler.source>${bytecode.version}</maven.compiler.source>
+        <maven.compiler.target>${bytecode.version}</maven.compiler.target>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>jdk16</id>
+      <activation>
+        <property>
+          <name>jdk.version</name>
+          <value>1.6</value>
+        </property>
+      </activation>
+      <properties>
+        <jvm.args>-XX:-FailOverToOldVerifier -Xverify:all</jvm.args>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>jdk17</id>
+      <activation>
+        <property>
+          <name>jdk.version</name>
+          <value>1.7</value>
+        </property>
+      </activation>
+      <properties>
+        <jvm.args>-XX:-FailOverToOldVerifier -Xverify:all</jvm.args>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>jdk18</id>
+      <activation>
+        <property>
+          <name>jdk.version</name>
+          <value>1.8</value>
+        </property>
+      </activation>
+      <properties>
+        <jvm.args>-XX:-FailOverToOldVerifier -Xverify:all</jvm.args>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>sign</id>
+      <activation>
+        <property>
+          <name>jarsigner.alias</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jarsigner-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>sign</id>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+                <configuration>
+                  <arguments>
+                    <!-- TODO Godin: there is no parameters for TSA in plugin, so we use workaround - see http://jira.codehaus.org/browse/MJARSIGNER-16 -->
+                    <argument>-tsa</argument>
+                    <argument>${jarsigner.tsa}</argument>
+                    <argument>-tsacert</argument>
+                    <argument>${jarsigner.tsacert}</argument>
+                  </arguments>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <profile>
+      <id>manifest</id>
+      <activation>
+        <file>
+          <exists>META-INF/MANIFEST.MF</exists>
+        </file>
+      </activation>
+      <properties>
+        <bundle-manifest>${project.build.directory}/META-INF/MANIFEST.MF</bundle-manifest>
+      </properties>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>translate-qualifier</id>
+                <phase>generate-resources</phase>
+                <configuration>
+                  <target>
+                    <copy file="META-INF/MANIFEST.MF" tofile="${bundle-manifest}" overwrite="true"/>
+                    <replace file="${bundle-manifest}">
+                      <replacefilter token=".qualifier" value=".${buildQualifier}"/>
+                    </replace>
+                  </target>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jar-plugin</artifactId>
+            <configuration>
+              <archive>
+                <manifestFile>${bundle-manifest}</manifestFile>
+                <manifestEntries>
+                  <Eclipse-SourceReferences>scm:git:git://github.com/jacoco/jacoco.git;path="${project.artifactId}";commitId=${buildNumber}</Eclipse-SourceReferences>
+                </manifestEntries>
+              </archive>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <profile>
+      <id>sources</id>
+      <activation>
+        <file>
+          <exists>src/</exists>
+        </file>
+      </activation>
+      <build>
+        <plugins>
+          <!-- Generates jar with sources -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>jar-no-fork</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <!-- Generates Javadoc -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!-- This profile is activated when a project is released. -->
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-enforcer-plugin</artifactId>
+            <inherited>false</inherited>
+            <executions>
+              <execution>
+                <id>enforce-release-rules</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>enforce</goal>
+                </goals>
+                <configuration>
+                  <rules>
+                    <!--
+                    <requireActiveProfile>
+                      <message>You must sign JARs during release.</message>
+                      <profiles>sign</profiles>
+                    </requireActiveProfile>
+                    -->
+                    <requireReleaseVersion/>
+                    <requireProperty>
+                      <property>buildNumber</property>
+                      <regex>[0-9a-f]{40}</regex>
+                    </requireProperty>
+                  </rules>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <!-- Checks compatibility with Java API -->
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>animal-sniffer-maven-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>enforce-java-api-compatibility</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+                <configuration>
+                  <signature>
+                    <groupId>org.codehaus.mojo.signature</groupId>
+                    <artifactId>java15</artifactId>
+                    <version>1.0</version>
+                  </signature>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <!-- Signs artifacts -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!-- This profile is active only when used from Eclipse m2e and is used only to store settings. -->
+    <profile>
+      <id>m2e</id>
+      <activation>
+        <property>
+          <name>m2e.version</name>
+        </property>
+      </activation>
+      <build>
+        <pluginManagement>
+          <plugins>
+            <!--This plugin's 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>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-antrun-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>run</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-invoker-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>install</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-dependency-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>unpack</goal>
+                          <goal>copy-dependencies</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.codehaus.groovy.maven</groupId>
+                        <artifactId>gmaven-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>execute</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>xml-maven-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>transform</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.jacoco</groupId>
+                        <artifactId>jacoco-maven-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>prepare-agent</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-enforcer-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>enforce</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>build-helper-maven-plugin</artifactId>
+                        <versionRange>[0,)</versionRange>
+                        <goals>
+                          <goal>parse-version</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                  </pluginExecutions>
+                </lifecycleMappingMetadata>
+              </configuration>
+            </plugin>
+          </plugins>
+        </pluginManagement>
+      </build>
+    </profile>
+  </profiles>
+
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom.md5
new file mode 100644
index 0000000..43bb099
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom.md5
@@ -0,0 +1 @@
+30cc484def08073b2a79c004fc038291
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom.sha1
new file mode 100644
index 0000000..92e8c7e
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/0.7.4.201502262128/org.jacoco.build-0.7.4.201502262128.pom.sha1
@@ -0,0 +1 @@
+f65953b9eb96d0ba6c218b851d4da48374f9d037
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml b/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml
index 9ff7ba8..083bc84 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml
@@ -3,8 +3,8 @@
   <groupId>org.jacoco</groupId>
   <artifactId>org.jacoco.build</artifactId>
   <versioning>
-    <latest>0.7.2.201409121644</latest>
-    <release>0.7.2.201409121644</release>
+    <latest>0.7.4.201502262128</latest>
+    <release>0.7.4.201502262128</release>
     <versions>
       <version>0.5.3.201107060350</version>
       <version>0.5.4.201111111111</version>
@@ -23,7 +23,9 @@
       <version>0.7.0.201403182114</version>
       <version>0.7.1.201405082137</version>
       <version>0.7.2.201409121644</version>
+      <version>0.7.3.201502191951</version>
+      <version>0.7.4.201502262128</version>
     </versions>
-    <lastUpdated>20140913105755</lastUpdated>
+    <lastUpdated>20150227135725</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml.md5 b/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml.md5
index 4d3cf1b..8ea6bb4 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml.md5
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml.md5
@@ -1 +1 @@
-926fc61b6dc6ed72636760fb8f8feeff
\ No newline at end of file
+39467a6fed19d94a82ba67cd8fe35623
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml.sha1 b/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml.sha1
new file mode 100644
index 0000000..2fbd451
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.build/maven-metadata.xml.sha1
@@ -0,0 +1 @@
+0acc0664f2666c51fc85b88c58026efc7e63a2a7
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar
new file mode 100644
index 0000000..c76e4b6
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar.md5
new file mode 100644
index 0000000..acc822a
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar.md5
@@ -0,0 +1 @@
+1fe6b3599e962901e7077e7085c8c499
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar.sha1
new file mode 100644
index 0000000..689e889
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555-sources.jar.sha1
@@ -0,0 +1 @@
+09cb845b6f44ae3d9be7844ab38d93fa2882ce6c
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar
new file mode 100644
index 0000000..6a445d7
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar.md5
new file mode 100644
index 0000000..fb328ba
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar.md5
@@ -0,0 +1 @@
+8a0764d7bc4c770cad688cc4aaf8eae0
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar.sha1
new file mode 100644
index 0000000..3a634aa
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.jar.sha1
@@ -0,0 +1 @@
+426d72152a379fcebccb459fb96ad8f7734e38ca
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom
new file mode 100644
index 0000000..84b32e0
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.jacoco</groupId>
+    <artifactId>org.jacoco.build</artifactId>
+    <version>0.7.3.201501221555</version>
+    <relativePath>../org.jacoco.build</relativePath>
+  </parent>
+
+  <artifactId>org.jacoco.core</artifactId>
+
+  <name>JaCoCo :: Core</name>
+  <description>JaCoCo Core</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-debug-all</artifactId>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+  </build>
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom.md5
new file mode 100644
index 0000000..ba07b5a
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom.md5
@@ -0,0 +1 @@
+843045da1f134801ac9203c7f2b29770
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom.sha1
new file mode 100644
index 0000000..c4d07c2
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/org.jacoco.core-0.7.3.201501221555.pom.sha1
@@ -0,0 +1 @@
+e8f27b92f5b61c5c72a3e15ad72cc29ebc8f6a70
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar
new file mode 100644
index 0000000..0919025
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar.md5
new file mode 100644
index 0000000..eb610e5
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar.md5
@@ -0,0 +1 @@
+385cb5913dc24addf08b9c33c98a8f4e
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar.sha1
new file mode 100644
index 0000000..3c35dc5
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128-sources.jar.sha1
@@ -0,0 +1 @@
+b6356a696e396a348a673237eee1f496ef75b4b1
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar
new file mode 100644
index 0000000..ef820ae
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar.md5
new file mode 100644
index 0000000..0f42dd2
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar.md5
@@ -0,0 +1 @@
+d1b5ef9dd6a1c5678fc9921ce5f3db95
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar.sha1
new file mode 100644
index 0000000..b5e811a
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.jar.sha1
@@ -0,0 +1 @@
+31482f50411a3a5769b6c78fa9b97ba731c205e7
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom
new file mode 100644
index 0000000..40d58d7
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.jacoco</groupId>
+    <artifactId>org.jacoco.build</artifactId>
+    <version>0.7.4.201502262128</version>
+    <relativePath>../org.jacoco.build</relativePath>
+  </parent>
+
+  <artifactId>org.jacoco.core</artifactId>
+
+  <name>JaCoCo :: Core</name>
+  <description>JaCoCo Core</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-debug-all</artifactId>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+  </build>
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom.md5
new file mode 100644
index 0000000..3d9e55e
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom.md5
@@ -0,0 +1 @@
+92b44666f879468861476eb3cdd9fc54
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom.sha1
new file mode 100644
index 0000000..58a7fe3
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/org.jacoco.core-0.7.4.201502262128.pom.sha1
@@ -0,0 +1 @@
+28288d676edea9ea4587d9e4b6f5940c5b2afdd1
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml b/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml
index fa6813a..13aa371 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml
@@ -3,8 +3,8 @@
   <groupId>org.jacoco</groupId>
   <artifactId>org.jacoco.core</artifactId>
   <versioning>
-    <latest>0.7.2.201409121644</latest>
-    <release>0.7.2.201409121644</release>
+    <latest>0.7.4.201502262128</latest>
+    <release>0.7.4.201502262128</release>
     <versions>
       <version>0.5.3.201107060350</version>
       <version>0.5.4.201111111111</version>
@@ -23,7 +23,9 @@
       <version>0.7.0.201403182114</version>
       <version>0.7.1.201405082137</version>
       <version>0.7.2.201409121644</version>
+      <version>0.7.3.201502191951</version>
+      <version>0.7.4.201502262128</version>
     </versions>
-    <lastUpdated>20140913105755</lastUpdated>
+    <lastUpdated>20150227135725</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml.md5 b/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml.md5
index 4fd4047..bee58da 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml.md5
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml.md5
@@ -1 +1 @@
-b3a6254eb3112a9eaf8c151d88b3d914
\ No newline at end of file
+0975b33ea376581f7ec6847cc38324ae
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml.sha1 b/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml.sha1
index 0c4b348..f3fed7b 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml.sha1
+++ b/common/m2/repository/org/jacoco/org.jacoco.core/maven-metadata.xml.sha1
@@ -1 +1 @@
-8331c928d416836267a9c6d082ed38a91e8731b3
\ No newline at end of file
+e853fab3fe691073175461fb491004f4120dc968
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar
new file mode 100644
index 0000000..a34d093
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar.md5
new file mode 100644
index 0000000..b6c0699
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar.md5
@@ -0,0 +1 @@
+edb9bd7ef7add4835251cce5598c8a48
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar.sha1
new file mode 100644
index 0000000..69bebeb
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555-sources.jar.sha1
@@ -0,0 +1 @@
+6e21c1559a19754fa2989cf69a0457aaaac05536
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar
new file mode 100644
index 0000000..42ff731
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar.md5
new file mode 100644
index 0000000..b68e728
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar.md5
@@ -0,0 +1 @@
+a2addc9332a78403cb886ccdfab407fe
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar.sha1
new file mode 100644
index 0000000..5030d66
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.jar.sha1
@@ -0,0 +1 @@
+625d51bc38b412076af0995715c82376fe5392ce
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom
new file mode 100644
index 0000000..1012914
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.jacoco</groupId>
+    <artifactId>org.jacoco.build</artifactId>
+    <version>0.7.3.201501221555</version>
+    <relativePath>../org.jacoco.build</relativePath>
+  </parent>
+
+  <artifactId>org.jacoco.report</artifactId>
+
+  <name>JaCoCo :: Report</name>
+  <description>JaCoCo Reporting</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>org.jacoco.core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-debug-all</artifactId>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+  </build>
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom.md5
new file mode 100644
index 0000000..1c124e1
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom.md5
@@ -0,0 +1 @@
+49099f73c5d23de378e563095f1a2032
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom.sha1
new file mode 100644
index 0000000..bcf0cbd
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/org.jacoco.report-0.7.3.201501221555.pom.sha1
@@ -0,0 +1 @@
+bf8b24261dbe199a2c86175bf935ff5d1189d03e
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/NOTICE b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/NOTICE
new file mode 100644
index 0000000..f13bf7f
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/NOTICE
@@ -0,0 +1,10 @@
+Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+
+The JaCoCo Java Code Coverage Library and all included documentation is made
+available by Mountainminds GmbH & Co. KG, Munich. Except indicated below, the
+Content is provided to you under the terms and conditions of the Eclipse Public
+License Version 1.0 ("EPL"). A copy of the EPL is available at
+http://www.eclipse.org/legal/epl-v10.html.
+
+Please visit http://www.eclemma.org/jacoco/trunk/doc/license.html for the
+complete license information including third party licenses and trademarks.
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar
new file mode 100644
index 0000000..7dd0fc6
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar.md5
new file mode 100644
index 0000000..4208869
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar.md5
@@ -0,0 +1 @@
+edcd86d689ce09b1ddbb440c82779691
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar.sha1
new file mode 100644
index 0000000..c9427cf
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128-sources.jar.sha1
@@ -0,0 +1 @@
+08a1d7672a72c5b8de35e111ac715d4f87811026
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar
new file mode 100644
index 0000000..b718b46
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar
Binary files differ
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar.md5 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar.md5
new file mode 100644
index 0000000..5eeb223
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar.md5
@@ -0,0 +1 @@
+d09a4191ee3e1ec873b90f15440c8c54
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar.sha1 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar.sha1
new file mode 100644
index 0000000..17d0b16
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.jar.sha1
@@ -0,0 +1 @@
+5c6bb5f95ae695dc4510b95f7d5ad0397e4881ad
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom
new file mode 100644
index 0000000..1567ca3
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors
+   All rights reserved. This program and the accompanying materials
+   are made available under the terms of the Eclipse Public License v1.0
+   which accompanies this distribution, and is available at
+   http://www.eclipse.org/legal/epl-v10.html
+
+   Contributors:
+      Evgeny Mandrikov - initial API and implementation
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.jacoco</groupId>
+    <artifactId>org.jacoco.build</artifactId>
+    <version>0.7.4.201502262128</version>
+    <relativePath>../org.jacoco.build</relativePath>
+  </parent>
+
+  <artifactId>org.jacoco.report</artifactId>
+
+  <name>JaCoCo :: Report</name>
+  <description>JaCoCo Reporting</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>org.jacoco.core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-debug-all</artifactId>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+  </build>
+</project>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom.md5 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom.md5
new file mode 100644
index 0000000..edb11d0
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom.md5
@@ -0,0 +1 @@
+dcea75a3f0df80f729a199914d30d56d
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom.sha1 b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom.sha1
new file mode 100644
index 0000000..8b5fb1e
--- /dev/null
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/org.jacoco.report-0.7.4.201502262128.pom.sha1
@@ -0,0 +1 @@
+0a99ef0376820e97a5bfe2da266a2f6a68ae5cb5
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml b/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml
index 2b5106e..93c8f90 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml
@@ -3,8 +3,8 @@
   <groupId>org.jacoco</groupId>
   <artifactId>org.jacoco.report</artifactId>
   <versioning>
-    <latest>0.7.2.201409121644</latest>
-    <release>0.7.2.201409121644</release>
+    <latest>0.7.4.201502262128</latest>
+    <release>0.7.4.201502262128</release>
     <versions>
       <version>0.5.3.201107060350</version>
       <version>0.5.4.201111111111</version>
@@ -23,7 +23,9 @@
       <version>0.7.0.201403182114</version>
       <version>0.7.1.201405082137</version>
       <version>0.7.2.201409121644</version>
+      <version>0.7.3.201502191951</version>
+      <version>0.7.4.201502262128</version>
     </versions>
-    <lastUpdated>20140913105756</lastUpdated>
+    <lastUpdated>20150227135725</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml.md5 b/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml.md5
index f90618b..985a673 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml.md5
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml.md5
@@ -1 +1 @@
-79aea2fefbe69a75414de818e3d27ec0
\ No newline at end of file
+cc03e222c7337e27663f6695599c7263
\ No newline at end of file
diff --git a/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml.sha1 b/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml.sha1
index 058690b..fea3c7c 100644
--- a/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml.sha1
+++ b/common/m2/repository/org/jacoco/org.jacoco.report/maven-metadata.xml.sha1
@@ -1 +1 @@
-0d61b871b05df051abf78068338d7e4cdfcfd33f
\ No newline at end of file
+632d71649d9cbcf6269b0f81fe521f9ddd89829c
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar
new file mode 100644
index 0000000..5b87d27
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar.md5 b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar.md5
new file mode 100644
index 0000000..0d5ddcb
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar.md5
@@ -0,0 +1 @@
+5de00a965491b5927b8fe5fe212f488b
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar.sha1 b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar.sha1
new file mode 100644
index 0000000..7293c15
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2-sources.jar.sha1
@@ -0,0 +1 @@
+5aa8e259e13160dd08088a87cf952d8357861837
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar
new file mode 100644
index 0000000..9571912
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar
Binary files differ
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar.md5 b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar.md5
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar.md5
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar.sha1 b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar.sha1
new file mode 100644
index 0000000..b49d694
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.aar.sha1
@@ -0,0 +1 @@
+b9059f07699ffae003d448135e3fa446565722a0
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom
new file mode 100644
index 0000000..19027aa
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom
@@ -0,0 +1,81 @@
+<!--
+  Copyright 2014 Ray Tsang
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+    http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<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>
+		<artifactId>jdeferred-android-parent</artifactId>
+		<groupId>org.jdeferred</groupId>
+		<version>1.2.2</version>
+		<relativePath>../pom.xml</relativePath>
+	</parent>
+	<artifactId>jdeferred-android-aar</artifactId>
+	<name>JDeferred Android Library AAR</name>
+	<description>Use JDeferred in Android while dispatching callbacks in UI thread and/or Background thread.</description>
+	<packaging>aar</packaging>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jdeferred</groupId>
+      <artifactId>jdeferred-core</artifactId>
+    </dependency>
+  </dependencies>
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-resources-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>copy-resources</id>
+						<phase>validate</phase>
+						<goals>
+							<goal>copy-resources</goal>
+						</goals>
+						<configuration>
+							<outputDirectory>${basedir}</outputDirectory>
+							<resources>
+								<resource>
+									<directory>${project.parent.basedir}/library</directory>
+									<includes>
+										<include>AndroidManifest.xml</include>
+										<include>assests/**</include>
+										<include>res/**</include>
+										<include>src/**</include>
+									</includes>
+								</resource>
+							</resources>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+      <plugin>
+        <artifactId>maven-clean-plugin</artifactId>
+        <configuration>
+          <filesets>
+            <fileset>
+              <directory>${basedir}</directory>
+              <includes>
+                <include>AndroidManifest.xml</include>
+                <include>assets/**</include>
+                <include>res/**</include>
+                <include>src/**</include>
+              </includes>
+            </fileset>
+          </filesets>
+        </configuration>
+      </plugin>
+		</plugins>
+	</build>
+</project>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom.md5 b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom.md5
new file mode 100644
index 0000000..60e48c5
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom.md5
@@ -0,0 +1 @@
+0a8ca20f41744b8bcc6b22ef4d065acd
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom.sha1 b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom.sha1
new file mode 100644
index 0000000..16f626a
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.2/jdeferred-android-aar-1.2.2.pom.sha1
@@ -0,0 +1 @@
+28482869e1ea6f00809f0cc7cf07857307f8f97b
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.aar b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.aar
new file mode 100644
index 0000000..de69d8b
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.aar
Binary files differ
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.aar.asc b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.aar.asc
new file mode 100644
index 0000000..6859523
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.aar.asc
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.12 (Darwin)
+
+iQEcBAABAgAGBQJTzejyAAoJEMsp0kU6nN2Xm6oH/ivmfloKv+46/MzXtHl06duL
+NTL0SQD4zIUwrcYDvGrN+AzlJDdM1TgeScQ4OziHCyd7YyaMxTWbgt2a3AC/r0Fn
+VQwoET+PpAzeNhPYhfJ8Py/14StVdAs5iAID323DDhVhfDJFUORRRnmf1+bP6JwF
+3oDbfTcKh7g8EOSGz6YePuKIQM/8NGb2BzNJOfujkcGo8Vm2WEdA68CamXPPNAMR
+xi9ST5FeJ1BBm+kPK94RN7nBFWVs+UtEAlf/Gril6Vxr0PqmlPJ87Lkxt40Avloo
+7GI7ZQH8cv5+z4QXOhtHbcsWWY3SVT/r1Kz08cqesR3zqHuXoSpe8dSHsrpK4ZY=
+=Ysf0
+-----END PGP SIGNATURE-----
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom
new file mode 100644
index 0000000..2af7d5c
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom
@@ -0,0 +1,81 @@
+<!--
+  Copyright 2014 Ray Tsang
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+    http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<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>
+		<artifactId>jdeferred-android-parent</artifactId>
+		<groupId>org.jdeferred</groupId>
+		<version>1.2.3</version>
+		<relativePath>../pom.xml</relativePath>
+	</parent>
+	<artifactId>jdeferred-android-aar</artifactId>
+	<name>JDeferred Android Library AAR</name>
+	<description>Use JDeferred in Android while dispatching callbacks in UI thread and/or Background thread.</description>
+	<packaging>aar</packaging>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jdeferred</groupId>
+      <artifactId>jdeferred-core</artifactId>
+    </dependency>
+  </dependencies>
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-resources-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>copy-resources</id>
+						<phase>validate</phase>
+						<goals>
+							<goal>copy-resources</goal>
+						</goals>
+						<configuration>
+							<outputDirectory>${basedir}</outputDirectory>
+							<resources>
+								<resource>
+									<directory>${project.parent.basedir}/library</directory>
+									<includes>
+										<include>AndroidManifest.xml</include>
+										<include>assests/**</include>
+										<include>res/**</include>
+										<include>src/**</include>
+									</includes>
+								</resource>
+							</resources>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+      <plugin>
+        <artifactId>maven-clean-plugin</artifactId>
+        <configuration>
+          <filesets>
+            <fileset>
+              <directory>${basedir}</directory>
+              <includes>
+                <include>AndroidManifest.xml</include>
+                <include>assets/**</include>
+                <include>res/**</include>
+                <include>src/**</include>
+              </includes>
+            </fileset>
+          </filesets>
+        </configuration>
+      </plugin>
+		</plugins>
+	</build>
+</project>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom.md5 b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom.md5
new file mode 100644
index 0000000..50bc13a
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom.md5
@@ -0,0 +1 @@
+a667098813c8ee87c1dbfc9200987f8f
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom.sha1 b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom.sha1
new file mode 100644
index 0000000..d0e7063
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/1.2.3/jdeferred-android-aar-1.2.3.pom.sha1
@@ -0,0 +1 @@
+3407472edb30ca384edb68df94f306c00eac379c
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-aar/maven-metadata.xml b/common/m2/repository/org/jdeferred/jdeferred-android-aar/maven-metadata.xml
new file mode 100644
index 0000000..c645d5d
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-aar/maven-metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.jdeferred</groupId>
+  <artifactId>jdeferred-android-aar</artifactId>
+  <version>1.2.3</version>
+  <versioning>
+    <latest>1.2.3</latest>
+    <release>1.2.3</release>
+    <versions>
+      <version>1.2.0-Beta-1</version>
+      <version>1.2.0</version>
+      <version>1.2.1</version>
+      <version>1.2.2</version>
+      <version>1.2.3</version>
+    </versions>
+    <lastUpdated>20140727205857</lastUpdated>
+  </versioning>
+</metadata>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom
new file mode 100644
index 0000000..1393e13
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom
@@ -0,0 +1,94 @@
+<!--
+  Copyright 2014 Ray Tsang
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+    http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<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>
+		<artifactId>jdeferred-parent</artifactId>
+		<groupId>org.jdeferred</groupId>
+		<version>1.2.2</version>
+		<relativePath>../parent/pom.xml</relativePath>
+	</parent>
+	<artifactId>jdeferred-android-parent</artifactId>
+	<name>JDeferred Android Parent</name>
+	<packaging>pom</packaging>
+
+	<dependencies>
+		<dependency>
+			<groupId>com.google.android</groupId>
+			<artifactId>android</artifactId>
+		</dependency>
+	</dependencies>
+
+	<modules>
+		<module>library</module>
+		<module>library-aar</module>
+		<module>test</module>
+	</modules>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>com.jayway.maven.plugins.android.generation2</groupId>
+				<artifactId>android-maven-plugin</artifactId>
+        <extensions>true</extensions>
+				<configuration>
+					<sdk>
+						<!-- platform as api level (api level 16 = platform 4.1) -->
+						<platform>19</platform>
+					</sdk>
+          <test>
+            <skip>true</skip>
+          </test>
+				</configuration>
+			</plugin>
+		</plugins>
+		<pluginManagement>
+			<plugins>
+				<!--This plugin's 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.jayway.maven.plugins.android.generation2
+										</groupId>
+										<artifactId>
+											android-maven-plugin
+										</artifactId>
+										<versionRange>
+											[3.8.2,)
+										</versionRange>
+										<goals>
+											<goal>consume-aar</goal>
+										</goals>
+									</pluginExecutionFilter>
+									<action>
+										<ignore />
+									</action>
+								</pluginExecution>
+							</pluginExecutions>
+						</lifecycleMappingMetadata>
+					</configuration>
+				</plugin>
+			</plugins>
+		</pluginManagement>
+	</build>
+</project>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom.md5 b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom.md5
new file mode 100644
index 0000000..454886a
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom.md5
@@ -0,0 +1 @@
+3bfaafeb24cc743f510c491b86d9c9da
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom.sha1 b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom.sha1
new file mode 100644
index 0000000..ca957bd
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.2/jdeferred-android-parent-1.2.2.pom.sha1
@@ -0,0 +1 @@
+16802040ce277a772b3976dea840b13924dca689
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom
new file mode 100644
index 0000000..bba5246
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom
@@ -0,0 +1,94 @@
+<!--
+  Copyright 2014 Ray Tsang
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+    http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<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>
+		<artifactId>jdeferred-parent</artifactId>
+		<groupId>org.jdeferred</groupId>
+		<version>1.2.3</version>
+		<relativePath>../parent/pom.xml</relativePath>
+	</parent>
+	<artifactId>jdeferred-android-parent</artifactId>
+	<name>JDeferred Android Parent</name>
+	<packaging>pom</packaging>
+
+	<dependencies>
+		<dependency>
+			<groupId>com.google.android</groupId>
+			<artifactId>android</artifactId>
+		</dependency>
+	</dependencies>
+
+	<modules>
+		<module>library</module>
+		<module>library-aar</module>
+		<module>test</module>
+	</modules>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>com.jayway.maven.plugins.android.generation2</groupId>
+				<artifactId>android-maven-plugin</artifactId>
+        <extensions>true</extensions>
+				<configuration>
+					<sdk>
+						<!-- platform as api level (api level 16 = platform 4.1) -->
+						<platform>19</platform>
+					</sdk>
+          <test>
+            <skip>true</skip>
+          </test>
+				</configuration>
+			</plugin>
+		</plugins>
+		<pluginManagement>
+			<plugins>
+				<!--This plugin's 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.jayway.maven.plugins.android.generation2
+										</groupId>
+										<artifactId>
+											android-maven-plugin
+										</artifactId>
+										<versionRange>
+											[3.8.2,)
+										</versionRange>
+										<goals>
+											<goal>consume-aar</goal>
+										</goals>
+									</pluginExecutionFilter>
+									<action>
+										<ignore />
+									</action>
+								</pluginExecution>
+							</pluginExecutions>
+						</lifecycleMappingMetadata>
+					</configuration>
+				</plugin>
+			</plugins>
+		</pluginManagement>
+	</build>
+</project>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom.md5 b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom.md5
new file mode 100644
index 0000000..9d3d0e2
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom.md5
@@ -0,0 +1 @@
+6680458157016b12d9670740f7949450
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom.sha1 b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom.sha1
new file mode 100644
index 0000000..06c6185
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-parent/1.2.3/jdeferred-android-parent-1.2.3.pom.sha1
@@ -0,0 +1 @@
+302087a39f2033f8bbfea684bb847b2601bdc6da
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-android-parent/maven-metadata.xml b/common/m2/repository/org/jdeferred/jdeferred-android-parent/maven-metadata.xml
new file mode 100644
index 0000000..59533f6
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-android-parent/maven-metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.jdeferred</groupId>
+  <artifactId>jdeferred-android-parent</artifactId>
+  <version>1.2.3</version>
+  <versioning>
+    <latest>1.2.3</latest>
+    <release>1.2.3</release>
+    <versions>
+      <version>1.1.0-Beta1</version>
+      <version>1.1.0</version>
+      <version>1.1.1</version>
+      <version>1.2.0-Beta-1</version>
+      <version>1.2.0</version>
+      <version>1.2.1</version>
+      <version>1.2.2</version>
+      <version>1.2.3</version>
+    </versions>
+    <lastUpdated>20140727030140</lastUpdated>
+  </versioning>
+</metadata>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar
new file mode 100644
index 0000000..923d815
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar.md5 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar.md5
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar.md5
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar.sha1 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar.sha1
new file mode 100644
index 0000000..c3ea585
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2-sources.jar.sha1
@@ -0,0 +1 @@
+3cbd488c6990c77a48e0bc5429478db90d4369b6
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar
new file mode 100644
index 0000000..a6ad0dc
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar
Binary files differ
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar.md5 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar.md5
new file mode 100644
index 0000000..fcc07f6
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar.md5
@@ -0,0 +1 @@
+67590e39c17de79c33b2bbe50ff8824b
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar.sha1 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar.sha1
new file mode 100644
index 0000000..a7e0fc2
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.jar.sha1
@@ -0,0 +1 @@
+6349f0df206020034f74823d7cc44fc3071ab703
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom
new file mode 100644
index 0000000..9f22b6a
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom
@@ -0,0 +1,47 @@
+<!--
+  Copyright 2013 Ray Tsang
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+    http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<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.jdeferred</groupId>
+		<artifactId>jdeferred-parent</artifactId>
+		<version>1.2.2</version>
+		<relativePath>../parent/pom.xml</relativePath>
+	</parent>
+	
+	<artifactId>jdeferred-core</artifactId>
+	<name>JDeferred Core Library</name>
+	<packaging>bundle</packaging>
+	<description>Java Deferred/Promise library similar to JQuery.</description>
+	
+	
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-jdk14</artifactId>
+		</dependency>
+	</dependencies>
+	
+</project>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom.md5 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom.md5
new file mode 100644
index 0000000..abb4f52
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom.md5
@@ -0,0 +1 @@
+3ada288014de20783b80c269dbc77db3
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom.sha1 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom.sha1
new file mode 100644
index 0000000..81355be
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/jdeferred-core-1.2.2.pom.sha1
@@ -0,0 +1 @@
+63c27eefdb7cdf22dc0e82a4cf9315bde84b7cca
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.jar b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.jar
new file mode 100644
index 0000000..2b8822e
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.jar
Binary files differ
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.jar.md5 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.jar.md5
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.jar.md5
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom
new file mode 100644
index 0000000..49d9aa6
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom
@@ -0,0 +1,47 @@
+<!--
+  Copyright 2013 Ray Tsang
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+    http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<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.jdeferred</groupId>
+		<artifactId>jdeferred-parent</artifactId>
+		<version>1.2.3</version>
+		<relativePath>../parent/pom.xml</relativePath>
+	</parent>
+	
+	<artifactId>jdeferred-core</artifactId>
+	<name>JDeferred Core Library</name>
+	<packaging>bundle</packaging>
+	<description>Java Deferred/Promise library similar to JQuery.</description>
+	
+	
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-jdk14</artifactId>
+		</dependency>
+	</dependencies>
+	
+</project>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom.md5 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom.md5
new file mode 100644
index 0000000..bdf6ea3
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom.md5
@@ -0,0 +1 @@
+77b61407a713ea6c8f79d4c134c8e4b5
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom.sha1 b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom.sha1
new file mode 100644
index 0000000..ee75c03
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/jdeferred-core-1.2.3.pom.sha1
@@ -0,0 +1 @@
+87f9048a949de61a8dd41705de2922c16a704834
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-core/maven-metadata.xml b/common/m2/repository/org/jdeferred/jdeferred-core/maven-metadata.xml
new file mode 100644
index 0000000..70f72c9
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-core/maven-metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.jdeferred</groupId>
+  <artifactId>jdeferred-core</artifactId>
+  <version>1.2.3</version>
+  <versioning>
+    <latest>1.2.3</latest>
+    <release>1.2.3</release>
+    <versions>
+      <version>1.0.0-Alpha1</version>
+      <version>1.0.0-Beta1</version>
+      <version>1.0.0-CR1</version>
+      <version>1.0.0</version>
+      <version>1.0.1</version>
+      <version>1.1.0-Beta1</version>
+      <version>1.1.0</version>
+      <version>1.1.1</version>
+      <version>1.2.0-Beta-1</version>
+      <version>1.2.0</version>
+      <version>1.2.1</version>
+      <version>1.2.2</version>
+      <version>1.2.3</version>
+    </versions>
+    <lastUpdated>20140725021501</lastUpdated>
+  </versioning>
+</metadata>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom
new file mode 100644
index 0000000..18dd81f
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom
@@ -0,0 +1,248 @@
+<!--
+  Copyright 2014 Ray Tsang
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+    http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<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.sonatype.oss</groupId>
+		<artifactId>oss-parent</artifactId>
+		<version>7</version>
+		<relativePath />
+	</parent>
+
+	<groupId>org.jdeferred</groupId>
+	<artifactId>jdeferred-parent</artifactId>
+	<version>1.2.2</version>
+	<url>http://jdeferred.org</url>
+	<name>JDeferred Common Parent</name>
+	<packaging>pom</packaging>
+	<description>JDeferred common parent POM module.</description>
+	<inceptionYear>2013</inceptionYear>
+
+	<scm>
+		<connection>scm:git:git@github.com:jdeferred/jdeferred.git</connection>
+		<developerConnection>scm:git:git@github.com:jdeferred/jdeferred.git</developerConnection>
+		<url>git@github.com:jdeferred/jdeferred.git</url>
+		<tag>1.2.2</tag>
+	</scm>
+
+	<issueManagement>
+		<url>https://github.com/jdeferred/jdeferred/issues</url>
+	</issueManagement>
+
+	<licenses>
+		<license>
+			<name>The Apache Software License, Version 2.0</name>
+			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+			<distribution>repo</distribution>
+		</license>
+	</licenses>
+
+	<developers>
+		<developer>
+			<name>Ray Tsang</name>
+			<url>https://github.com/saturnism</url>
+		</developer>
+	</developers>
+
+	<properties>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+		<version.android>4.1.1.4</version.android>
+		<version.junit>4.11</version.junit>
+		<version.slf4j>1.7.2</version.slf4j>
+		<version.maven.bundle>2.3.7</version.maven.bundle>
+		<version.maven.compiler>3.0</version.maven.compiler>
+		<version.maven.release>2.4.2</version.maven.release>
+		<version.maven.scm.provider.git>1.8.1</version.maven.scm.provider.git>
+		<version.maven.android>3.8.2</version.maven.android>
+		<version.maven.source>2.1.2</version.maven.source>
+		<version.maven.javadoc>2.8.1</version.maven.javadoc>
+		<version.maven.resources>2.6</version.maven.resources>
+	</properties>
+
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>junit</groupId>
+				<artifactId>junit</artifactId>
+				<version>${version.junit}</version>
+				<scope>test</scope>
+			</dependency>
+			<dependency>
+				<groupId>org.slf4j</groupId>
+				<artifactId>slf4j-api</artifactId>
+				<version>${version.slf4j}</version>
+				<scope>compile</scope>
+			</dependency>
+			<dependency>
+				<groupId>org.slf4j</groupId>
+				<artifactId>slf4j-jdk14</artifactId>
+				<version>${version.slf4j}</version>
+				<scope>test</scope>
+			</dependency>
+			<dependency>
+				<groupId>com.google.android</groupId>
+				<artifactId>android</artifactId>
+				<version>${version.android}</version>
+				<scope>provided</scope>
+			</dependency>
+			<dependency>
+				<groupId>com.google.android</groupId>
+				<artifactId>android-test</artifactId>
+				<version>${version.android}</version>
+				<scope>provided,test</scope>
+			</dependency>
+
+			<dependency>
+				<groupId>org.jdeferred</groupId>
+				<artifactId>jdeferred-core</artifactId>
+				<version>${project.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.jdeferred</groupId>
+				<artifactId>jdeferred-android</artifactId>
+				<version>${project.version}</version>
+				<type>apklib</type>
+			</dependency>
+			<dependency>
+				<groupId>org.jdeferred</groupId>
+				<artifactId>jdeferred-android-aar</artifactId>
+				<version>${project.version}</version>
+				<type>aar</type>
+			</dependency>
+		</dependencies>
+	</dependencyManagement>
+
+	<build>
+		<pluginManagement>
+			<plugins>
+				<plugin>
+					<groupId>org.apache.felix</groupId>
+					<artifactId>maven-bundle-plugin</artifactId>
+					<version>${version.maven.bundle}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-release-plugin</artifactId>
+					<version>${version.maven.release}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-compiler-plugin</artifactId>
+					<version>${version.maven.compiler}</version>
+				</plugin>
+				<plugin>
+					<groupId>com.jayway.maven.plugins.android.generation2</groupId>
+					<artifactId>android-maven-plugin</artifactId>
+					<version>${version.maven.android}</version>
+					<extensions>true</extensions>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-source-plugin</artifactId>
+					<version>${version.maven.source}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-javadoc-plugin</artifactId>
+					<version>${version.maven.javadoc}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-resources-plugin</artifactId>
+					<version>${version.maven.resources}</version>
+				</plugin>
+			</plugins>
+		</pluginManagement>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<extensions>true</extensions>
+				<configuration>
+					<instructions>
+						<Bundle-DocURL>http://jdeferred.org/</Bundle-DocURL>
+						<Export-Package>${project.groupId}.*;version=${project.version};-split-package:=error</Export-Package>
+					</instructions>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-release-plugin</artifactId>
+				<configuration>
+					<mavenExecutorId>forked-path</mavenExecutorId>
+					<autoVersionSubmodules>true</autoVersionSubmodules>
+					<pushChanges>false</pushChanges>
+					<localCheckout>true</localCheckout>
+					<tagNameFormat>${project.version}</tagNameFormat>
+				</configuration>
+				<executions>
+					<execution>
+						<id>default</id>
+						<goals>
+							<goal>perform</goal>
+						</goals>
+						<configuration>
+							<pomFileName>parent/pom.xml</pomFileName>
+						</configuration>
+					</execution>
+				</executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-provider-gitexe</artifactId>
+            <version>${version.maven.scm.provider.git}</version>
+          </dependency>
+        </dependencies>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+</project>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom.md5 b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom.md5
new file mode 100644
index 0000000..2b3601e
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom.md5
@@ -0,0 +1 @@
+4e9504152ba1430d5a1970580733aea1
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom.sha1 b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom.sha1
new file mode 100644
index 0000000..1f3476e
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.2/jdeferred-parent-1.2.2.pom.sha1
@@ -0,0 +1 @@
+8467d0f424551225ca975f76f8765053c6c30832
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom
new file mode 100644
index 0000000..359e08b
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom
@@ -0,0 +1,269 @@
+<!--
+  Copyright 2014 Ray Tsang
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+    http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<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.sonatype.oss</groupId>
+		<artifactId>oss-parent</artifactId>
+		<version>7</version>
+		<relativePath />
+	</parent>
+
+	<groupId>org.jdeferred</groupId>
+	<artifactId>jdeferred-parent</artifactId>
+	<version>1.2.3</version>
+	<url>http://jdeferred.org</url>
+	<name>JDeferred Common Parent</name>
+	<packaging>pom</packaging>
+	<description>JDeferred common parent POM module.</description>
+	<inceptionYear>2013</inceptionYear>
+
+	<scm>
+		<connection>scm:git:git@github.com:jdeferred/jdeferred.git</connection>
+		<developerConnection>scm:git:git@github.com:jdeferred/jdeferred.git</developerConnection>
+		<url>git@github.com:jdeferred/jdeferred.git</url>
+		<tag>1.2.3</tag>
+	</scm>
+
+	<issueManagement>
+		<url>https://github.com/jdeferred/jdeferred/issues</url>
+	</issueManagement>
+
+	<licenses>
+		<license>
+			<name>The Apache Software License, Version 2.0</name>
+			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+			<distribution>repo</distribution>
+		</license>
+	</licenses>
+
+	<developers>
+		<developer>
+			<name>Ray Tsang</name>
+			<url>https://github.com/saturnism</url>
+		</developer>
+	</developers>
+
+	<properties>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+		<version.android>4.1.1.4</version.android>
+		<version.junit>4.11</version.junit>
+		<version.slf4j>1.7.2</version.slf4j>
+		<version.maven.bundle>2.3.7</version.maven.bundle>
+		<version.maven.compiler>3.0</version.maven.compiler>
+		<version.maven.release>2.4.2</version.maven.release>
+		<version.maven.scm.provider.git>1.8.1</version.maven.scm.provider.git>
+		<version.maven.android>3.8.2</version.maven.android>
+		<version.maven.source>2.1.2</version.maven.source>
+		<version.maven.javadoc>2.8.1</version.maven.javadoc>
+		<version.maven.resources>2.6</version.maven.resources>
+		<version.maven.deploy>2.8.1</version.maven.deploy>
+    <version.nexus.staging>1.6.2</version.nexus.staging>
+	</properties>
+
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>junit</groupId>
+				<artifactId>junit</artifactId>
+				<version>${version.junit}</version>
+				<scope>test</scope>
+			</dependency>
+			<dependency>
+				<groupId>org.slf4j</groupId>
+				<artifactId>slf4j-api</artifactId>
+				<version>${version.slf4j}</version>
+				<scope>compile</scope>
+			</dependency>
+			<dependency>
+				<groupId>org.slf4j</groupId>
+				<artifactId>slf4j-jdk14</artifactId>
+				<version>${version.slf4j}</version>
+				<scope>test</scope>
+			</dependency>
+			<dependency>
+				<groupId>com.google.android</groupId>
+				<artifactId>android</artifactId>
+				<version>${version.android}</version>
+				<scope>provided</scope>
+			</dependency>
+			<dependency>
+				<groupId>com.google.android</groupId>
+				<artifactId>android-test</artifactId>
+				<version>${version.android}</version>
+				<scope>provided,test</scope>
+			</dependency>
+
+			<dependency>
+				<groupId>org.jdeferred</groupId>
+				<artifactId>jdeferred-core</artifactId>
+				<version>${project.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.jdeferred</groupId>
+				<artifactId>jdeferred-android</artifactId>
+				<version>${project.version}</version>
+				<type>apklib</type>
+			</dependency>
+			<dependency>
+				<groupId>org.jdeferred</groupId>
+				<artifactId>jdeferred-android-aar</artifactId>
+				<version>${project.version}</version>
+				<type>aar</type>
+			</dependency>
+		</dependencies>
+	</dependencyManagement>
+
+	<build>
+		<pluginManagement>
+			<plugins>
+				<plugin>
+					<groupId>org.apache.felix</groupId>
+					<artifactId>maven-bundle-plugin</artifactId>
+					<version>${version.maven.bundle}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-release-plugin</artifactId>
+					<version>${version.maven.release}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-compiler-plugin</artifactId>
+					<version>${version.maven.compiler}</version>
+				</plugin>
+				<plugin>
+					<groupId>com.jayway.maven.plugins.android.generation2</groupId>
+					<artifactId>android-maven-plugin</artifactId>
+					<version>${version.maven.android}</version>
+					<extensions>true</extensions>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-source-plugin</artifactId>
+					<version>${version.maven.source}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-javadoc-plugin</artifactId>
+					<version>${version.maven.javadoc}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-resources-plugin</artifactId>
+					<version>${version.maven.resources}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-deploy-plugin</artifactId>
+					<version>${version.maven.deploy}</version>
+				</plugin>
+				<plugin>
+					<groupId>org.sonatype.plugins</groupId>
+					<artifactId>nexus-staging-maven-plugin</artifactId>
+					<version>${version.nexus.staging}</version>
+				</plugin>
+      </plugins>
+		</pluginManagement>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<extensions>true</extensions>
+				<configuration>
+					<instructions>
+						<Bundle-DocURL>http://jdeferred.org/</Bundle-DocURL>
+						<Export-Package>${project.groupId}.*;version=${project.version};-split-package:=error</Export-Package>
+					</instructions>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-release-plugin</artifactId>
+				<configuration>
+					<mavenExecutorId>forked-path</mavenExecutorId>
+					<autoVersionSubmodules>true</autoVersionSubmodules>
+					<pushChanges>false</pushChanges>
+					<localCheckout>true</localCheckout>
+					<tagNameFormat>${project.version}</tagNameFormat>
+				</configuration>
+				<executions>
+					<execution>
+						<id>default</id>
+						<goals>
+							<goal>perform</goal>
+						</goals>
+						<configuration>
+							<pomFileName>parent/pom.xml</pomFileName>
+						</configuration>
+					</execution>
+				</executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-provider-gitexe</artifactId>
+            <version>${version.maven.scm.provider.git}</version>
+          </dependency>
+        </dependencies>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+      <plugin>
+        <groupId>org.sonatype.plugins</groupId>
+				<artifactId>nexus-staging-maven-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <serverId>sonatype-nexus-staging</serverId>
+          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
+        </configuration>
+      </plugin>
+		</plugins>
+	</build>
+</project>
diff --git a/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom.md5 b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom.md5
new file mode 100644
index 0000000..c967912
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom.md5
@@ -0,0 +1 @@
+7e60b9c8abc1eca1c1b1ab21f403df6a
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom.sha1 b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom.sha1
new file mode 100644
index 0000000..8a67fc2
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-parent/1.2.3/jdeferred-parent-1.2.3.pom.sha1
@@ -0,0 +1 @@
+85dcbb488d4be6f6e914660a9ac1117b3eb38a92
\ No newline at end of file
diff --git a/common/m2/repository/org/jdeferred/jdeferred-parent/maven-metadata.xml b/common/m2/repository/org/jdeferred/jdeferred-parent/maven-metadata.xml
new file mode 100644
index 0000000..1c7768f
--- /dev/null
+++ b/common/m2/repository/org/jdeferred/jdeferred-parent/maven-metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.jdeferred</groupId>
+  <artifactId>jdeferred-parent</artifactId>
+  <version>1.2.3</version>
+  <versioning>
+    <latest>1.2.3</latest>
+    <release>1.2.3</release>
+    <versions>
+      <version>1.0.0-Alpha1</version>
+      <version>1.0.0-Beta1</version>
+      <version>1.0.0-CR1</version>
+      <version>1.0.0</version>
+      <version>1.0.1</version>
+      <version>1.1.0-Beta1</version>
+      <version>1.1.0</version>
+      <version>1.1.1</version>
+      <version>1.2.0-Beta-1</version>
+      <version>1.2.0</version>
+      <version>1.2.1</version>
+      <version>1.2.2</version>
+      <version>1.2.3</version>
+    </versions>
+    <lastUpdated>20140902073130</lastUpdated>
+  </versioning>
+</metadata>
diff --git a/common/m2/repository/org/mockito/mockito-all/1.9.5/NOTICE b/common/m2/repository/org/mockito/mockito-all/1.9.5/NOTICE
new file mode 100644
index 0000000..5a311f7
--- /dev/null
+++ b/common/m2/repository/org/mockito/mockito-all/1.9.5/NOTICE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2007 Mockito contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom b/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom
new file mode 100644
index 0000000..4982e47
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom
@@ -0,0 +1,495 @@
+<?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/maven-v4_0_0.xsd">

+  <modelVersion>4.0.0</modelVersion>

+  <groupId>org.objenesis</groupId>

+  <artifactId>objenesis-parent</artifactId>

+  <version>2.1</version>

+  <packaging>pom</packaging>

+

+  <name>Objenesis parent project</name>

+  <description>A library for instantiating Java objects</description>

+  <url>http://objenesis.org</url>

+  <inceptionYear>2006</inceptionYear>

+

+  <modules>

+    <module>main</module>

+    <module>tck</module>

+  </modules>

+

+  <licenses>

+    <license>

+      <name>Apache 2</name>

+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>

+      <distribution>repo</distribution>

+    </license>

+  </licenses>

+

+  <!-- Used for the copyright -->

+  <organization>

+    <name>Joe Walnes, Henri Tremblay, Leonardo Mesquita</name>

+  </organization>

+

+  <scm>

+    <url>https://github.com/easymock/easymock</url>

+    <developerConnection>scm:git:git@github.com:easymock/objenesis.git</developerConnection>

+    <connection>scm:git:git://github.com/easymock/objenesis.git</connection>

+    <tag>2.1</tag>

+  </scm>

+

+  <developers>

+    <developer>

+      <id>joe</id>

+      <name>Joe Walnes</name>

+      <timezone>0</timezone>

+    </developer>

+    <developer>

+      <id>henri</id>

+      <name>Henri Tremblay</name>

+      <timezone>+1</timezone>

+    </developer>

+    <developer>

+      <id>leonardo</id>

+      <name>Leonardo Mesquita</name>

+      <timezone>-5</timezone>

+    </developer>

+  </developers>

+

+  <properties>

+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

+  </properties>

+

+  <dependencies>

+    <dependency>

+      <groupId>junit</groupId>

+      <artifactId>junit</artifactId>

+      <version>4.11</version>

+      <scope>test</scope>

+    </dependency>

+  </dependencies>

+

+  <build>

+    <sourceDirectory>${basedir}/src</sourceDirectory>

+    <resources>

+      <resource>

+        <!-- Test resources are in the test source directory -->

+        <directory>${basedir}/src</directory>

+        <excludes>

+          <!-- Everything except java files is considered to be a resource -->

+          <exclude>**/*.java</exclude>

+        </excludes>

+      </resource>

+    </resources>

+    <testSourceDirectory>${basedir}/test</testSourceDirectory>

+    <testResources>

+      <testResource>

+        <!-- Test resources are in the test source directory -->

+        <directory>${basedir}/test</directory>

+        <excludes>

+          <!-- Everything except java files is considered to be a resource -->

+          <exclude>**/*.java</exclude>

+        </excludes>

+      </testResource>

+    </testResources>

+    <plugins>

+      <plugin>

+        <artifactId>maven-compiler-plugin</artifactId>

+        <version>3.1</version>

+        <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-release-plugin</artifactId>

+        <configuration>

+          <!-- Required to let release with the benchmark project using snapshots. I can't put it directly in the benchmark project. It doesn't work -->

+          <allowTimestampedSnapshots>true</allowTimestampedSnapshots>

+          <!-- Renamed because the default would be objenesis-parent-x.y -->

+          <tagNameFormat>@{project.version}</tagNameFormat>

+          <!-- Quite annoying in case of error that the changes were pushed -->

+          <pushChanges>false</pushChanges>

+        </configuration>

+      </plugin>

+      <plugin>

+        <artifactId>maven-site-plugin</artifactId>

+        <inherited>false</inherited>

+        <configuration>

+          <siteDirectory>${project.basedir}/website</siteDirectory>

+        </configuration>

+      </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-5</version>

+      </extension>

+    </extensions>

+    <pluginManagement>

+      <plugins>

+        <plugin>

+          <artifactId>maven-jar-plugin</artifactId>

+          <version>2.4</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-surefire-plugin</artifactId>

+          <version>2.13</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-clean-plugin</artifactId>

+          <version>2.4.1</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-deploy-plugin</artifactId>

+          <version>2.7</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-gpg-plugin</artifactId>

+          <version>1.4</version>

+          <executions>

+            <execution>

+              <id>sign-artifacts</id>

+              <phase>verify</phase>

+              <goals>

+                <goal>sign</goal>

+              </goals>

+            </execution>

+          </executions>

+        </plugin>

+        <plugin>

+          <artifactId>maven-install-plugin</artifactId>

+          <version>2.4</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-release-plugin</artifactId>

+          <version>2.4.1</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-resources-plugin</artifactId>

+          <version>2.6</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-site-plugin</artifactId>

+          <version>3.0</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-source-plugin</artifactId>

+          <version>2.1.2</version>

+        </plugin>

+        <plugin>

+          <artifactId>maven-javadoc-plugin</artifactId>

+          <version>2.8</version>

+        </plugin>

+        <plugin>

+          <groupId>org.apache.felix</groupId>

+          <artifactId>maven-bundle-plugin</artifactId>

+          <version>2.3.5</version>

+          <executions>

+            <execution>

+              <id>bundle-manifest</id>

+              <phase>prepare-package</phase>

+              <goals>

+                <goal>manifest</goal>

+              </goals>

+            </execution>

+          </executions>

+        </plugin>

+        <plugin>

+          <groupId>com.keyboardsamurais.maven</groupId>

+          <artifactId>maven-timestamp-plugin</artifactId>

+          <version>1.0</version>

+          <executions>

+            <execution>

+              <id>year</id>

+              <goals>

+                <goal>create</goal>

+              </goals>

+              <configuration>

+                <propertyName>year</propertyName>

+                <timestampPattern>yyyy</timestampPattern>

+              </configuration>

+            </execution>

+          </executions>

+        </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>

+            <excludes>

+              <!-- Not being ignore by default -->

+              <exclude>.gitignore</exclude>

+              <!-- Nothing is copyrighted in target -->

+              <exclude>target/**</exclude>

+              <!-- copyrights to BEA -->

+              <exclude>src/org/objenesis/instantiator/jrockit/*.java</exclude>

+              <!-- generated pom by maven-shade-plugin -->

+              <exclude>dependency-reduced-pom.xml</exclude>

+              <!-- generated by Equinox during OSGi test -->

+              <exclude>eclipse_config/**</exclude>

+              <!-- no header wanted on the website -->

+              <exclude>website/**</exclude>

+              <!-- no header on batch files wanted -->

+              <exclude>**/*.bat</exclude>

+              <!-- generated Android files -->

+              <exclude>project.properties</exclude>

+              <exclude>lint.xml</exclude>

+              <exclude>gen/**</exclude>

+              <exclude>bin/**</exclude>

+            </excludes>

+            <properties>

+              <inceptionYear>${project.inceptionYear}</inceptionYear>

+              <year>${year}</year>

+            </properties>

+          </configuration>

+          <executions>

+            <execution>

+              <id>check</id>

+              <goals>

+                <goal>check</goal>

+              </goals>

+            </execution>

+          </executions>

+        </plugin>

+        <plugin>

+          <groupId>org.apache.maven.plugins</groupId>

+          <artifactId>maven-remote-resources-plugin</artifactId>

+          <version>1.2.1</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>org.codehaus.mojo</groupId>

+          <artifactId>findbugs-maven-plugin</artifactId>

+          <version>2.5.2</version>

+          <configuration>

+            <xmlOutput>true</xmlOutput>

+            <omitVisitors>Naming</omitVisitors>

+          </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>

+                <pluginExecution>

+                  <pluginExecutionFilter>

+                    <groupId>org.codehaus.mojo</groupId>

+                    <artifactId>findbugs-maven-plugin</artifactId>

+                    <versionRange>[2.5.2,)</versionRange>

+                    <goals>

+                      <goal>findbugs</goal>

+                    </goals>

+                  </pluginExecutionFilter>

+                  <action>

+                    <ignore />

+                  </action>

+                </pluginExecution>

+              </pluginExecutions>

+            </lifecycleMappingMetadata>

+          </configuration>

+        </plugin>

+      </plugins>

+    </pluginManagement>

+  </build>

+  <reporting>

+    <plugins>

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

+        <artifactId>maven-project-info-reports-plugin</artifactId>

+        <version>2.6</version>

+      </plugin>

+      <plugin>

+        <groupId>org.codehaus.mojo</groupId>

+        <artifactId>findbugs-maven-plugin</artifactId>

+        <version>2.5.2</version>

+      </plugin>

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

+        <artifactId>maven-pmd-plugin</artifactId>

+        <version>3.0.1</version>

+        <configuration>

+          <targetJdk>1.5</targetJdk>

+        </configuration>

+      </plugin>

+    </plugins>

+  </reporting>

+

+  <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>

+      <!-- Activate to generate javadoc, sources jars and run findbugs -->

+      <id>full</id>

+      <build>

+        <plugins>

+          <plugin>

+            <groupId>org.apache.maven.plugins</groupId>

+            <artifactId>maven-source-plugin</artifactId>

+            <executions>

+              <execution>

+                <id>attach-sources</id>

+                <goals>

+                  <goal>jar</goal>

+                </goals>

+              </execution>

+            </executions>

+          </plugin>

+          <plugin>

+            <groupId>org.apache.maven.plugins</groupId>

+            <artifactId>maven-javadoc-plugin</artifactId>

+            <executions>

+              <execution>

+                <id>attach-javadocs</id>

+                <goals>

+                  <goal>jar</goal>

+                </goals>

+              </execution>

+            </executions>

+          </plugin>

+          <plugin>

+            <groupId>org.codehaus.mojo</groupId>

+            <artifactId>findbugs-maven-plugin</artifactId>

+            <executions>

+              <execution>

+                <id>findbugs</id>

+                <goals>

+                  <goal>findbugs</goal>

+                </goals>

+              </execution>

+            </executions>

+          </plugin>

+        </plugins>

+      </build>

+    </profile>

+    <profile>

+      <!-- Activate to update the license -->

+      <id>license</id>

+      <build>

+        <pluginManagement>

+          <plugins>

+            <plugin>

+              <groupId>com.mycila.maven-license-plugin</groupId>

+              <artifactId>maven-license-plugin</artifactId>

+              <executions>

+                <execution>

+                  <id>format</id>

+                  <phase>generate-sources</phase>

+                  <goals>

+                    <goal>format</goal>

+                  </goals>

+                </execution>

+              </executions>

+            </plugin>

+          </plugins>

+        </pluginManagement>

+      </build>

+    </profile>

+    <profile>

+      <!-- Activate to generate the website -->

+      <id>website</id>

+      <modules>

+        <module>website</module>

+      </modules>

+    </profile>

+    <profile>

+      <!-- Activate to execute the tck on Android -->

+      <id>android</id>

+      <modules>

+        <module>tck-android</module>

+      </modules>

+    </profile>

+    <profile>

+      <!-- Activate to run the benchmark -->

+      <id>benchmark</id>

+      <modules>

+        <module>benchmark</module>

+      </modules>

+    </profile>

+    <profile>

+      <!-- Activate to create a complete release -->

+      <id>release</id>

+      <build>

+        <plugins>

+          <plugin>

+            <artifactId>maven-gpg-plugin</artifactId>

+          </plugin>

+        </plugins>

+      </build>

+    </profile>

+  </profiles>

+</project>

diff --git a/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom.md5 b/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom.md5
new file mode 100644
index 0000000..64b65f5
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom.md5
@@ -0,0 +1 @@
+50af320196fc75444ff4566a6eb17209
\ No newline at end of file
diff --git a/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom.sha1 b/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom.sha1
new file mode 100644
index 0000000..64c189c
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis-parent/2.1/objenesis-parent-2.1.pom.sha1
@@ -0,0 +1 @@
+156a12a0fcf8ed856bdc60ce10550ea46fba8eaa
\ No newline at end of file
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/NOTICE b/common/m2/repository/org/objenesis/objenesis/2.1/NOTICE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/NOTICE
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar
new file mode 100644
index 0000000..6949b2f
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar
Binary files differ
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar.md5 b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar.md5
new file mode 100644
index 0000000..a1a9258
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar.md5
@@ -0,0 +1 @@
+572f73c43d32e7ee5f4cdd313463f5c7
\ No newline at end of file
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar.sha1 b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar.sha1
new file mode 100644
index 0000000..7363e45
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1-sources.jar.sha1
@@ -0,0 +1 @@
+0611a57d836e2c320d59f9851d4ad587f3c8472e
\ No newline at end of file
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar
new file mode 100644
index 0000000..7c1e983
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar
Binary files differ
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar.md5 b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar.md5
new file mode 100644
index 0000000..0784e7a
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar.md5
@@ -0,0 +1 @@
+32ccb1d20a42b5aaaceb90c9082a2efa
\ No newline at end of file
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar.sha1 b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar.sha1
new file mode 100644
index 0000000..9e845d7
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.jar.sha1
@@ -0,0 +1 @@
+87c0ea803b69252868d09308b4618f766f135a96
\ No newline at end of file
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom
new file mode 100644
index 0000000..a23ce9e
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom
@@ -0,0 +1,78 @@
+<?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/maven-v4_0_0.xsd">

+  <modelVersion>4.0.0</modelVersion>

+  <parent>

+    <groupId>org.objenesis</groupId>

+    <artifactId>objenesis-parent</artifactId>

+    <version>2.1</version>

+  </parent>

+  <artifactId>objenesis</artifactId>

+  

+  <name>Objenesis</name>

+  <description>A library for instantiating Java objects</description>

+  <url>http://objenesis.org</url>

+

+  <dependencies />

+

+  <build>

+    <plugins>

+      <plugin>

+        <groupId>com.keyboardsamurais.maven</groupId>

+        <artifactId>maven-timestamp-plugin</artifactId>

+      </plugin>

+      <plugin>

+        <groupId>com.mycila.maven-license-plugin</groupId>

+        <artifactId>maven-license-plugin</artifactId>

+      </plugin>

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

+        <artifactId>maven-remote-resources-plugin</artifactId>

+      </plugin>

+      <plugin>

+        <groupId>org.apache.felix</groupId>

+        <artifactId>maven-bundle-plugin</artifactId>

+        <extensions>true</extensions>

+        <configuration>

+          <instructions>

+            <Import-Package>

+            COM.jrockit.reflect;resolution:=optional,

+            jrockit.vm;resolution:=optional,

+            COM.newmonics.PercClassloader;resolution:=optional,

+            sun.reflect;resolution:=optional

+            </Import-Package>

+          </instructions>

+        </configuration>

+      </plugin>

+    </plugins>

+  </build>

+

+  <profiles>

+    <profile>

+      <!-- Activate to create the release bundle -->

+      <id>release</id>

+      <build>

+        <plugins>

+          <plugin>

+            <groupId>org.apache.maven.plugins</groupId>

+            <artifactId>maven-assembly-plugin</artifactId>

+            <configuration>

+              <attach>false</attach>

+              <descriptors>

+                <descriptor>assembly.xml</descriptor>

+              </descriptors>

+            </configuration>

+            <executions>

+              <execution>

+                <id>make-assembly</id>

+                <phase>package</phase>

+                <goals>

+                  <goal>single</goal>

+                </goals>

+              </execution>

+            </executions>

+          </plugin>

+        </plugins>

+      </build>

+    </profile>

+  </profiles>

+</project>

diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom.md5 b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom.md5
new file mode 100644
index 0000000..b87945c
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom.md5
@@ -0,0 +1 @@
+00d14a4f827a442948221f12b3f52260
\ No newline at end of file
diff --git a/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom.sha1 b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom.sha1
new file mode 100644
index 0000000..6f0a50c
--- /dev/null
+++ b/common/m2/repository/org/objenesis/objenesis/2.1/objenesis-2.1.pom.sha1
@@ -0,0 +1 @@
+362dfc522ff5a1401838f136cb7a7ec99033fc33
\ No newline at end of file
diff --git a/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/NOTICE b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/NOTICE
new file mode 100644
index 0000000..9496b17
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/NOTICE
@@ -0,0 +1,28 @@
+

+ ASM: a very small and fast Java bytecode manipulation framework

+ Copyright (c) 2000-2005 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.

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/NOTICE b/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/NOTICE
new file mode 100644
index 0000000..9496b17
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-parent/5.0.3/NOTICE
@@ -0,0 +1,28 @@
+

+ ASM: a very small and fast Java bytecode manipulation framework

+ Copyright (c) 2000-2005 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.

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/NOTICE b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/NOTICE
new file mode 100644
index 0000000..9496b17
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm-tree/5.0.3/NOTICE
@@ -0,0 +1,28 @@
+

+ ASM: a very small and fast Java bytecode manipulation framework

+ Copyright (c) 2000-2005 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.

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/NOTICE b/common/m2/repository/org/ow2/asm/asm/5.0.3/NOTICE
new file mode 100644
index 0000000..9496b17
--- /dev/null
+++ b/common/m2/repository/org/ow2/asm/asm/5.0.3/NOTICE
@@ -0,0 +1,28 @@
+

+ ASM: a very small and fast Java bytecode manipulation framework

+ Copyright (c) 2000-2005 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.

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
diff --git a/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0-sources.jar b/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0-sources.jar
new file mode 100644
index 0000000..7afdee7
--- /dev/null
+++ b/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0.jar b/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0.jar
new file mode 100644
index 0000000..4576af9
--- /dev/null
+++ b/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0.pom b/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0.pom
new file mode 100644
index 0000000..c981d75
--- /dev/null
+++ b/common/offline-m2/com/android/tools/annotations/24.1.0/annotations-24.1.0.pom
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools</groupId>
+  <artifactId>annotations</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools Annotations library</name>
+  <description>annotations used throughout the Android tools libraries.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+</project>
diff --git a/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0-sources.jar b/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0-sources.jar
new file mode 100644
index 0000000..ed31268
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0.jar b/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0.jar
new file mode 100644
index 0000000..a8d2e0f
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0.pom b/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0.pom
new file mode 100644
index 0000000..c027148
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder-model/1.1.0/builder-model-1.1.0.pom
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.build</groupId>
+  <artifactId>builder-model</artifactId>
+  <version>1.1.0</version>
+  <name>Android Builder Model library</name>
+  <description>Model for the Builder library.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>annotations</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0-sources.jar b/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0-sources.jar
new file mode 100644
index 0000000..394745c
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0.jar b/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0.jar
new file mode 100644
index 0000000..b18d34e
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0.pom b/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0.pom
new file mode 100644
index 0000000..0b5d5c3
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder-test-api/1.1.0/builder-test-api-1.1.0.pom
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.build</groupId>
+  <artifactId>builder-test-api</artifactId>
+  <version>1.1.0</version>
+  <name>Android Builder Test API library</name>
+  <description>API for the Test extension point in the Builder library.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.10</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.ddms</groupId>
+      <artifactId>ddmlib</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0-sources.jar b/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0-sources.jar
new file mode 100644
index 0000000..82eabe7
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0.jar b/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0.jar
new file mode 100644
index 0000000..fd6a4c8
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0.pom b/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0.pom
new file mode 100644
index 0000000..8af0e1f
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/builder/1.1.0/builder-1.1.0.pom
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.build</groupId>
+  <artifactId>builder</artifactId>
+  <version>1.1.0</version>
+  <name>Android Builder library</name>
+  <description>Library to build Android applications.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>sdk-common</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-all</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.build</groupId>
+      <artifactId>builder-model</artifactId>
+      <version>1.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.build</groupId>
+      <artifactId>manifest-merger</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15on</artifactId>
+      <version>1.48</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.build</groupId>
+      <artifactId>builder-test-api</artifactId>
+      <version>1.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-tree</artifactId>
+      <version>5.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>testutils</artifactId>
+      <version>24.1.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.ddms</groupId>
+      <artifactId>ddmlib</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.squareup</groupId>
+      <artifactId>javawriter</artifactId>
+      <version>2.5.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>sdklib</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>common</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+      <version>5.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcpkix-jdk15on</artifactId>
+      <version>1.48</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0-sources.jar b/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0-sources.jar
new file mode 100644
index 0000000..dc659ad
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0.jar b/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0.jar
new file mode 100644
index 0000000..b871515
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0.pom b/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0.pom
new file mode 100644
index 0000000..67b852c
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/gradle-core/1.1.0/gradle-core-1.1.0.pom
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.build</groupId>
+  <artifactId>gradle-core</artifactId>
+  <version>1.1.0</version>
+  <name>Core Library for Android Gradle Plug-in</name>
+  <description>Core library to build Android Gradle plugin.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>tools.base</groupId>
+      <artifactId>project-test-lib</artifactId>
+      <version>unspecified</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.lint</groupId>
+      <artifactId>lint</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>net.sf.proguard</groupId>
+      <artifactId>proguard-gradle</artifactId>
+      <version>5.1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.build</groupId>
+      <artifactId>builder</artifactId>
+      <version>1.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0-sources.jar b/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0-sources.jar
new file mode 100644
index 0000000..7be352b
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0.jar b/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0.jar
new file mode 100644
index 0000000..5f5c653
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0.pom b/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0.pom
new file mode 100644
index 0000000..80c676e
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/gradle/1.1.0/gradle-1.1.0.pom
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.build</groupId>
+  <artifactId>gradle</artifactId>
+  <version>1.1.0</version>
+  <name>Gradle Plug-in for Android</name>
+  <description>Gradle plug-in to build Android applications.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.android.tools.build</groupId>
+      <artifactId>gradle-core</artifactId>
+      <version>1.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>tools.base</groupId>
+      <artifactId>project-test-lib</artifactId>
+      <version>unspecified</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0-sources.jar b/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0-sources.jar
new file mode 100644
index 0000000..ed2b6bb
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0.jar b/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0.jar
new file mode 100644
index 0000000..f6dfcad
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0.pom b/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0.pom
new file mode 100644
index 0000000..249c314
--- /dev/null
+++ b/common/offline-m2/com/android/tools/build/manifest-merger/24.1.0/manifest-merger-24.1.0.pom
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.build</groupId>
+  <artifactId>manifest-merger</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools Manifest Merger library</name>
+  <description>A Library to merge Android manifests.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>net.sf.kxml</groupId>
+      <artifactId>kxml2</artifactId>
+      <version>2.3.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>common</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>sdk-common</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-all</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.code.gson</groupId>
+      <artifactId>gson</artifactId>
+      <version>2.2.4</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>sdklib</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0-sources.jar b/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0-sources.jar
new file mode 100644
index 0000000..9b89043
--- /dev/null
+++ b/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0.jar b/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0.jar
new file mode 100644
index 0000000..ccbd4da
--- /dev/null
+++ b/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0.pom b/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0.pom
new file mode 100644
index 0000000..eb7f293
--- /dev/null
+++ b/common/offline-m2/com/android/tools/common/24.1.0/common-24.1.0.pom
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools</groupId>
+  <artifactId>common</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools common library</name>
+  <description>common library used by other Android tools libraries.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>17.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>annotations</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0-sources.jar b/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0-sources.jar
new file mode 100644
index 0000000..122ed83
--- /dev/null
+++ b/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0.jar b/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0.jar
new file mode 100644
index 0000000..61b84c3
--- /dev/null
+++ b/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0.pom b/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0.pom
new file mode 100644
index 0000000..e849f44
--- /dev/null
+++ b/common/offline-m2/com/android/tools/ddms/ddmlib/24.1.0/ddmlib-24.1.0.pom
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.ddms</groupId>
+  <artifactId>ddmlib</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools ddmlib</name>
+  <description>Library providing APIs to talk to Android devices</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>net.sf.kxml</groupId>
+      <artifactId>kxml2</artifactId>
+      <version>2.3.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>common</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+      <version>3.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0-sources.jar b/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0-sources.jar
new file mode 100644
index 0000000..1356f9c
--- /dev/null
+++ b/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0.jar b/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0.jar
new file mode 100644
index 0000000..d5745e2
--- /dev/null
+++ b/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0.pom b/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0.pom
new file mode 100644
index 0000000..68295f1
--- /dev/null
+++ b/common/offline-m2/com/android/tools/dvlib/24.1.0/dvlib-24.1.0.pom
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools</groupId>
+  <artifactId>dvlib</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools dvlib</name>
+  <description>A Library to manage the Android device database XML files.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>common</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/NOTICE b/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/NOTICE
new file mode 100644
index 0000000..8d28df4
--- /dev/null
+++ b/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/NOTICE
@@ -0,0 +1,19 @@
+Copyright (C) 2010-2011 The Project Lombok Authors.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar b/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar
new file mode 100644
index 0000000..2c6c455
--- /dev/null
+++ b/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar b/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar
new file mode 100644
index 0000000..4b76285
--- /dev/null
+++ b/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom b/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom
new file mode 100644
index 0000000..7941b5d
--- /dev/null
+++ b/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.pom
@@ -0,0 +1,53 @@
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>com.android.tools.external.lombok</groupId>
+    <artifactId>lombok-ast</artifactId>
+    <version>0.2.3</version>
+    <packaging>jar</packaging>
+    <name>Lombok - AST fork</name>
+    <url>http://projectlombok.org/</url>
+    <description>This is a very small fork of lombok.ast as some Android tools needed a few modifications. The normal repository for lombok.ast is here https://github.com/rzwitserloot/lombok.ast and our changes for 0.2.3 are in this pull request: https://github.com/rzwitserloot/lombok.ast/pull/8</description>
+    <licenses>
+        <license>
+            <name>The MIT License</name>
+            <url>http://projectlombok.org/LICENSE</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    <scm>
+        <connection>git://android.googlesource.com/platform/prebuilts/tools.git</connection>
+        <url>https://android.googlesource.com/platform/prebuilts/tools</url>
+    </scm>
+    <issueManagement>
+        <system>Google Code</system>
+        <url>http://code.google.com/p/projectlombok/issues</url>
+    </issueManagement>
+    <dependencies>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+            <version>17.0</version>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+   <developers>
+        <developer>
+            <id>rzwitserloot</id>
+            <name>Reinier Zwitserloot</name>
+            <email>reinier@projectlombok.org</email>
+            <url>http://zwitserloot.com</url>
+            <timezone>+1</timezone>
+        </developer>
+        <developer>
+            <id>rspilker</id>
+            <name>Roel Spilker</name>
+            <email>roel@projectlombok.org</email>
+            <timezone>+1</timezone>
+        </developer>
+        <developer>
+            <id>rgrootjans</id>
+            <name>Robbert Jan Grootjans</name>
+            <timezone>+1</timezone>
+        </developer>
+    </developers>
+</project>
diff --git a/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0-sources.jar b/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0-sources.jar
new file mode 100644
index 0000000..a241770
--- /dev/null
+++ b/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0.jar b/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0.jar
new file mode 100644
index 0000000..367a1f8
--- /dev/null
+++ b/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0.pom b/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0.pom
new file mode 100644
index 0000000..68d289b
--- /dev/null
+++ b/common/offline-m2/com/android/tools/layoutlib/layoutlib-api/24.1.0/layoutlib-api-24.1.0.pom
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.layoutlib</groupId>
+  <artifactId>layoutlib-api</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools layoutlib-api</name>
+  <description>Library to use the rendering library for Android layouts: layoutlib</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>net.sf.kxml</groupId>
+      <artifactId>kxml2</artifactId>
+      <version>2.3.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>common</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0-sources.jar b/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0-sources.jar
new file mode 100644
index 0000000..8f8a560
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0.jar b/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0.jar
new file mode 100644
index 0000000..4ad97e9
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0.pom b/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0.pom
new file mode 100644
index 0000000..f46986d
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/lint-api-24.1.0.pom
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.lint</groupId>
+  <artifactId>lint-api</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools Lint API</name>
+  <description>API to build lint checks</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>sdk-common</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.build</groupId>
+      <artifactId>builder-model</artifactId>
+      <version>1.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+      <version>5.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-tree</artifactId>
+      <version>5.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.external.lombok</groupId>
+      <artifactId>lombok-ast</artifactId>
+      <version>0.2.3</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0-sources.jar b/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0-sources.jar
new file mode 100644
index 0000000..7f61135
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0.jar b/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0.jar
new file mode 100644
index 0000000..7b024fb
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0.pom b/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0.pom
new file mode 100644
index 0000000..af5c4e9
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint-checks/24.1.0/lint-checks-24.1.0.pom
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.lint</groupId>
+  <artifactId>lint-checks</artifactId>
+  <version>24.1.0</version>
+  <name>Android Lint Checks</name>
+  <description>Checks for Android Lint</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-analysis</artifactId>
+      <version>5.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>testutils</artifactId>
+      <version>24.1.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+      <version>3.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.lint</groupId>
+      <artifactId>lint-api</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0-sources.jar b/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0-sources.jar
new file mode 100644
index 0000000..fcce1db
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0.jar b/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0.jar
new file mode 100644
index 0000000..5f6514f
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0.pom b/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0.pom
new file mode 100644
index 0000000..5a7cd7f
--- /dev/null
+++ b/common/offline-m2/com/android/tools/lint/lint/24.1.0/lint-24.1.0.pom
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools.lint</groupId>
+  <artifactId>lint</artifactId>
+  <version>24.1.0</version>
+  <name>Android Lint Tool</name>
+  <description>Lint tools. Both a Command line tool and a library to add lint features to other tools</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.eclipse.jdt.core.compiler</groupId>
+      <artifactId>ecj</artifactId>
+      <version>4.4</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-all</artifactId>
+      <version>2.2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.lint</groupId>
+      <artifactId>lint-checks</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>testutils</artifactId>
+      <version>24.1.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+      <version>3.3</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0-sources.jar b/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0-sources.jar
new file mode 100644
index 0000000..826112b
--- /dev/null
+++ b/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0.jar b/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0.jar
new file mode 100644
index 0000000..50f98d1
--- /dev/null
+++ b/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0.pom b/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0.pom
new file mode 100644
index 0000000..4eef2ad
--- /dev/null
+++ b/common/offline-m2/com/android/tools/sdk-common/24.1.0/sdk-common-24.1.0.pom
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools</groupId>
+  <artifactId>sdk-common</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools sdk-common library</name>
+  <description>sdk-common library used by other Android tools libraries.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.android.tools.build</groupId>
+      <artifactId>builder-model</artifactId>
+      <version>1.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-all</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.build</groupId>
+      <artifactId>builder-test-api</artifactId>
+      <version>1.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.code.gson</groupId>
+      <artifactId>gson</artifactId>
+      <version>2.2.4</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>testutils</artifactId>
+      <version>24.1.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>sdklib</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0-sources.jar b/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0-sources.jar
new file mode 100644
index 0000000..df2e806
--- /dev/null
+++ b/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0.jar b/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0.jar
new file mode 100644
index 0000000..3fe0f56
--- /dev/null
+++ b/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0.jar
Binary files differ
diff --git a/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0.pom b/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0.pom
new file mode 100644
index 0000000..2a3700a
--- /dev/null
+++ b/common/offline-m2/com/android/tools/sdklib/24.1.0/sdklib-24.1.0.pom
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.android.tools</groupId>
+  <artifactId>sdklib</artifactId>
+  <version>24.1.0</version>
+  <name>Android Tools sdklib</name>
+  <description>A library to parse and download the Android SDK.</description>
+  <url>http://tools.android.com</url>
+  <inceptionYear>2007</inceptionYear>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>The Android Open Source Project</name>
+    </developer>
+  </developers>
+  <scm>
+    <connection>git://android.googlesource.com/platform/tools/base.git</connection>
+    <url>https://android.googlesource.com/platform/tools/base</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.android.tools</groupId>
+      <artifactId>dvlib</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+      <version>4.1.1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+      <version>4.1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.android.tools.layoutlib</groupId>
+      <artifactId>layoutlib-api</artifactId>
+      <version>24.1.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+      <version>1.8.1</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/offline-m2/com/google/code/gson/gson/2.2.4/NOTICE b/common/offline-m2/com/google/code/gson/gson/2.2.4/NOTICE
new file mode 100644
index 0000000..b9ba188
--- /dev/null
+++ b/common/offline-m2/com/google/code/gson/gson/2.2.4/NOTICE
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright 2008-2011 Google Inc.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
diff --git a/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar b/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar
new file mode 100644
index 0000000..74d3cc5
--- /dev/null
+++ b/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar
Binary files differ
diff --git a/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar b/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar
new file mode 100644
index 0000000..75fe27c
--- /dev/null
+++ b/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar
Binary files differ
diff --git a/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom b/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom
new file mode 100644
index 0000000..dd74c10
--- /dev/null
+++ b/common/offline-m2/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom
@@ -0,0 +1,218 @@
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.google.code.gson</groupId>
+  <artifactId>gson</artifactId>
+  <packaging>jar</packaging>
+  <version>2.2.4</version>
+  <inceptionYear>2008</inceptionYear>
+  <name>Gson</name>
+  <parent>
+    <groupId>org.sonatype.oss</groupId>
+    <artifactId>oss-parent</artifactId>
+    <version>7</version>
+  </parent>
+  <url>http://code.google.com/p/google-gson/</url>
+  <description>Google Gson library</description>
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <scm>
+    <connection>scm:svn:http://google-gson.googlecode.com/svn/trunk/gson</connection>
+    <developerConnection>scm:svn:https://google-gson.googlecode.com/svn/trunk/gson</developerConnection>
+    <url>http://google-gson.googlecode.com/svn/trunk/gson</url>
+  </scm>
+  <issueManagement>
+    <system>Google Code Issue Tracking</system>
+    <url>http://code.google.com/p/google-gson/issues/list</url>
+  </issueManagement>
+  <organization>
+    <name>Google, Inc.</name>
+    <url>http://www.google.com</url>
+  </organization>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <profiles>
+    <!-- Activate PGP signing only when performing a release -->
+    <profile>
+      <id>release-sign-artifacts</id>
+      <activation>
+        <property>
+          <name>performRelease</name>
+          <value>true</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.4</version>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.1</version>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>2.4</version>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <archive>
+            <addMavenDescriptor>false</addMavenDescriptor>
+            <manifestEntries>
+              <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
+              <Export-Package><![CDATA[com.google.gson;version=${project.version}, com.google.gson.annotations;version=${project.version}, com.google.gson.reflect;version=${project.version}, com.google.gson.stream;version=${project.version}, com.google.gson.internal;version=${project.version}, com.google.gson.internal.bind;version=${project.version}]]></Export-Package>
+              <Bundle-Version>${project.version}</Bundle-Version>
+              <Bundle-ContactAddress>http://code.google.com/p/google-gson/</Bundle-ContactAddress>
+              <Bundle-Vendor>Google Gson Project</Bundle-Vendor>
+              <Bundle-Name>${project.name}</Bundle-Name>
+              <Bundle-Description>${project.description}</Bundle-Description>
+              <Bundle-ClassPath>.</Bundle-ClassPath>
+              <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
+              <Bundle-SymbolicName>com.google.gson</Bundle-SymbolicName>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+       <!-- TODO(inder): add manifest entry for maven group, artifact, and classifier ids -->
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-source-plugin</artifactId>
+         <version>2.2.1</version>
+         <executions>
+           <execution>
+             <id>attach-sources</id>
+             <phase>verify</phase>
+             <goals>
+               <goal>jar</goal>
+             </goals>
+           </execution>
+         </executions>
+         <configuration>
+           <archive>
+             <manifestEntries>
+               <Eclipse-SourceBundle>com.google.gson;version="${project.version}"</Eclipse-SourceBundle>
+               <Bundle-SymbolicName>com.google.gson.source</Bundle-SymbolicName>
+               <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
+               <Bundle-Version>${project.version}</Bundle-Version>
+             </manifestEntries>
+           </archive>
+         </configuration>
+       </plugin>
+       <plugin>
+         <!-- TODO(inder): add manifest entry for maven group, artifact, and classifier ids -->
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-javadoc-plugin</artifactId>
+         <version>2.9</version>
+         <executions>
+           <execution>
+             <id>attach-javadocs</id>
+             <goals>
+               <goal>jar</goal>
+             </goals>
+           </execution>
+         </executions>
+         <configuration>
+           <includePackageNames>com.google.gson</includePackageNames>
+           <excludePackageNames>com.google.gson.internal:com.google.gson.internal.bind</excludePackageNames>
+            <links>
+             <link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
+           </links>
+           <version>true</version>
+           <show>protected</show>
+         </configuration>
+       </plugin>
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-eclipse-plugin</artifactId>
+         <version>2.9</version>
+         <configuration>
+           <downloadSources>true</downloadSources>
+           <downloadJavadocs>true</downloadJavadocs>
+           <workspace>
+             ../eclipse-ws/
+           </workspace>
+           <workspaceCodeStylesURL>
+             file:///${basedir}/../lib/gson-formatting-styles.xml
+           </workspaceCodeStylesURL>
+         </configuration>
+       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <!-- version>2.4.1</version -->
+        <configuration>
+          <arguments>-DenableCiProfile=true</arguments>
+          <tagBase>https://google-gson.googlecode.com/svn/tags</tagBase>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.4</version>
+        <configuration>
+          <descriptor>assembly-descriptor.xml</descriptor>
+          <finalName>google-gson-${project.version}</finalName>
+          <outputDirectory>target/dist</outputDirectory>
+          <workDirectory>target/assembly/work</workDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <developers>
+    <developer>
+      <name>Inderjeet Singh</name>
+      <organization>Trymph Inc.</organization>
+    </developer>
+    <developer>
+      <name>Joel Leitch</name>
+      <organization>Google Inc.</organization>
+    </developer>
+    <developer>
+      <name>Jesse Wilson</name>
+      <organization>Square Inc.</organization>
+    </developer>
+  </developers>
+</project>
+
diff --git a/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/NOTICE b/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/NOTICE
new file mode 100644
index 0000000..0d347ab
--- /dev/null
+++ b/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/NOTICE
@@ -0,0 +1,224 @@
+
+    Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF
+THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+*1. DEFINITIONS*
+
+"Contribution" means:
+
+a) in the case of the initial Contributor, the initial code and
+documentation distributed under this Agreement, and
+
+b) in the case of each subsequent Contributor:
+
+i) changes to the Program, and
+
+ii) additions to the Program;
+
+where such changes and/or additions to the Program originate from and
+are distributed by that particular Contributor. A Contribution
+'originates' from a Contributor if it was added to the Program by such
+Contributor itself or anyone acting on such Contributor's behalf.
+Contributions do not include additions to the Program which: (i) are
+separate modules of software distributed in conjunction with the Program
+under their own license agreement, and (ii) are not derivative works of
+the Program.
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents" mean patent claims licensable by a Contributor which
+are necessarily infringed by the use or sale of its Contribution alone
+or when combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this
+Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+*2. GRANT OF RIGHTS*
+
+a) Subject to the terms of this Agreement, each Contributor hereby
+grants Recipient a non-exclusive, worldwide, royalty-free copyright
+license to reproduce, prepare derivative works of, publicly display,
+publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and
+object code form.
+
+b) Subject to the terms of this Agreement, each Contributor hereby
+grants Recipient a non-exclusive, worldwide, royalty-free patent license
+under Licensed Patents to make, use, sell, offer to sell, import and
+otherwise transfer the Contribution of such Contributor, if any, in
+source code and object code form. This patent license shall apply to the
+combination of the Contribution and the Program if, at the time the
+Contribution is added by the Contributor, such addition of the
+Contribution causes such combination to be covered by the Licensed
+Patents. The patent license shall not apply to any other combinations
+which include the Contribution. No hardware per se is licensed hereunder.
+
+c) Recipient understands that although each Contributor grants the
+licenses to its Contributions set forth herein, no assurances are
+provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+d) Each Contributor represents that to its knowledge it has sufficient
+copyright rights in its Contribution, if any, to grant the copyright
+license set forth in this Agreement.
+
+*3. REQUIREMENTS*
+
+A Contributor may choose to distribute the Program in object code form
+under its own license agreement, provided that:
+
+a) it complies with the terms and conditions of this Agreement; and
+
+b) its license agreement:
+
+i) effectively disclaims on behalf of all Contributors all warranties
+and conditions, express and implied, including warranties or conditions
+of title and non-infringement, and implied warranties or conditions of
+merchantability and fitness for a particular purpose;
+
+ii) effectively excludes on behalf of all Contributors all liability for
+damages, including direct, indirect, special, incidental and
+consequential damages, such as lost profits;
+
+iii) states that any provisions which differ from this Agreement are
+offered by that Contributor alone and not by any other party; and
+
+iv) states that source code for the Program is available from such
+Contributor, and informs licensees how to obtain it in a reasonable
+manner on or through a medium customarily used for software exchange.
+
+When the Program is made available in source code form:
+
+a) it must be made available under this Agreement; and
+
+b) a copy of this Agreement must be included with each copy of the Program.
+
+Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+*4. COMMERCIAL DISTRIBUTION*
+
+Commercial distributors of software may accept certain responsibilities
+with respect to end users, business partners and the like. While this
+license is intended to facilitate the commercial use of the Program, the
+Contributor who includes the Program in a commercial product offering
+should do so in a manner which does not create potential liability for
+other Contributors. Therefore, if a Contributor includes the Program in
+a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified
+Contributor to the extent caused by the acts or omissions of such
+Commercial Contributor in connection with its distribution of the
+Program in a commercial product offering. The obligations in this
+section do not apply to any claims or Losses relating to any actual or
+alleged intellectual property infringement. In order to qualify, an
+Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial
+Contributor to control, and cooperate with the Commercial Contributor
+in, the defense and any related settlement negotiations. The Indemnified
+Contributor may participate in any such claim at its own expense.
+
+For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+*5. NO WARRANTY*
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED
+ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
+OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR
+A PARTICULAR PURPOSE. Each Recipient is solely responsible for
+determining the appropriateness of using and distributing the Program
+and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program
+errors, compliance with applicable laws, damage to or loss of data,
+programs or equipment, and unavailability or interruption of operations.
+
+*6. DISCLAIMER OF LIABILITY*
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR
+ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), 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 OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+*7. GENERAL*
+
+If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against any entity (including
+a cross-claim or counterclaim in a lawsuit) alleging that the Program
+itself (excluding combinations of the Program with other software or
+hardware) infringes such Recipient's patent(s), then such Recipient's
+rights granted under Section 2(b) shall terminate as of the date such
+litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails
+to comply with any of the material terms or conditions of this Agreement
+and does not cure such failure in a reasonable period of time after
+becoming aware of such noncompliance. If all Recipient's rights under
+this Agreement terminate, Recipient agrees to cease use and distribution
+of the Program as soon as reasonably practicable. However, Recipient's
+obligations under this Agreement and any licenses granted by Recipient
+relating to the Program shall continue and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement,
+but in order to avoid inconsistency the Agreement is copyrighted and may
+only be modified in the following manner. The Agreement Steward reserves
+the right to publish new versions (including revisions) of this
+Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the
+initial Agreement Steward. The Eclipse Foundation may assign the
+responsibility to serve as the Agreement Steward to a suitable separate
+entity. Each new version of the Agreement will be given a distinguishing
+version number. The Program (including Contributions) may always be
+distributed subject to the version of the Agreement under which it was
+received. In addition, after a new version of the Agreement is
+published, Contributor may elect to distribute the Program (including
+its Contributions) under the new version. Except as expressly stated in
+Sections 2(a) and 2(b) above, Recipient receives no rights or licenses
+to the intellectual property of any Contributor under this Agreement,
+whether expressly, by implication, estoppel or otherwise. All rights in
+the Program not expressly granted under this Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to
+this Agreement will bring a legal action under this Agreement more than
+one year after the cause of action arose. Each party waives its rights
+to a jury trial in any resulting litigation.
+
diff --git a/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar b/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar
new file mode 100644
index 0000000..2e0a34c
--- /dev/null
+++ b/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4-sources.jar
Binary files differ
diff --git a/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar b/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar
new file mode 100644
index 0000000..98f82dc
--- /dev/null
+++ b/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.jar
Binary files differ
diff --git a/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom b/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/ecj-4.4.pom
new file mode 100644
index 0000000..01e2625
--- /dev/null
+++ b/common/offline-m2/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/offline-m2/org/ow2/asm/asm-analysis/5.0.3/NOTICE b/common/offline-m2/org/ow2/asm/asm-analysis/5.0.3/NOTICE
new file mode 100644
index 0000000..9496b17
--- /dev/null
+++ b/common/offline-m2/org/ow2/asm/asm-analysis/5.0.3/NOTICE
@@ -0,0 +1,28 @@
+

+ ASM: a very small and fast Java bytecode manipulation framework

+ Copyright (c) 2000-2005 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.

diff --git a/common/offline-m2/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar b/common/offline-m2/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/offline-m2/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3-sources.jar
Binary files differ
diff --git a/common/offline-m2/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar b/common/offline-m2/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/offline-m2/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.jar
Binary files differ
diff --git a/common/offline-m2/org/ow2/asm/asm-analysis/5.0.3/asm-analysis-5.0.3.pom b/common/offline-m2/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/offline-m2/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/offline-m2/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom b/common/offline-m2/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/offline-m2/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/offline-m2/org/ow2/asm/asm-tree/5.0.3/NOTICE b/common/offline-m2/org/ow2/asm/asm-tree/5.0.3/NOTICE
new file mode 100644
index 0000000..9496b17
--- /dev/null
+++ b/common/offline-m2/org/ow2/asm/asm-tree/5.0.3/NOTICE
@@ -0,0 +1,28 @@
+

+ ASM: a very small and fast Java bytecode manipulation framework

+ Copyright (c) 2000-2005 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.

diff --git a/common/offline-m2/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar b/common/offline-m2/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/offline-m2/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3-sources.jar
Binary files differ
diff --git a/common/offline-m2/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar b/common/offline-m2/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/offline-m2/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.jar
Binary files differ
diff --git a/common/offline-m2/org/ow2/asm/asm-tree/5.0.3/asm-tree-5.0.3.pom b/common/offline-m2/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/offline-m2/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/offline-m2/org/ow2/asm/asm/5.0.3/NOTICE b/common/offline-m2/org/ow2/asm/asm/5.0.3/NOTICE
new file mode 100644
index 0000000..9496b17
--- /dev/null
+++ b/common/offline-m2/org/ow2/asm/asm/5.0.3/NOTICE
@@ -0,0 +1,28 @@
+

+ ASM: a very small and fast Java bytecode manipulation framework

+ Copyright (c) 2000-2005 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.

diff --git a/common/offline-m2/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar b/common/offline-m2/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar
new file mode 100644
index 0000000..57d6f37
--- /dev/null
+++ b/common/offline-m2/org/ow2/asm/asm/5.0.3/asm-5.0.3-sources.jar
Binary files differ
diff --git a/common/offline-m2/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar b/common/offline-m2/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar
new file mode 100644
index 0000000..573535b
--- /dev/null
+++ b/common/offline-m2/org/ow2/asm/asm/5.0.3/asm-5.0.3.jar
Binary files differ
diff --git a/common/offline-m2/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom b/common/offline-m2/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom
new file mode 100644
index 0000000..3fe9311
--- /dev/null
+++ b/common/offline-m2/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/spantable/MODULE_LICENSE_LGPL b/common/spantable/MODULE_LICENSE_LGPL
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/common/spantable/MODULE_LICENSE_LGPL
diff --git a/common/spantable/README b/common/spantable/README
new file mode 100644
index 0000000..4999bfc
--- /dev/null
+++ b/common/spantable/README
@@ -0,0 +1,7 @@
+Spantable library (https://code.google.com/p/spantable) forked at c4e5b3f67595,
+with our modifications:
+
+* model interface was changed
+* unused classes were removed
+* some refactorings, such as class renaming
+* tweaks and fixes in CellSpanTable class
diff --git a/common/spantable/sources.jar b/common/spantable/sources.jar
new file mode 100644
index 0000000..7a84844
--- /dev/null
+++ b/common/spantable/sources.jar
Binary files differ
diff --git a/common/spantable/spantable.jar b/common/spantable/spantable.jar
new file mode 100644
index 0000000..b01a4d4
--- /dev/null
+++ b/common/spantable/spantable.jar
Binary files differ