Start archiving two maven zips

One zip contains the full r8 with repacked dependencis, shrunken. Dependencies section of the pom file is empty

The other one is identical to what we have now: r8 without dependencies, but with the dependencies specified in the pom file

Change-Id: Iccaca901782cec59ad3c754cb39efd839f490a59
diff --git a/tools/archive.py b/tools/archive.py
index 9213cc2..d899943 100755
--- a/tools/archive.py
+++ b/tools/archive.py
@@ -109,7 +109,8 @@
     SetRLimitToMax()
   PrintResourceInfo()
   # Create maven release which uses a build that exclude dependencies.
-  create_maven_release.main(["--out", utils.LIBS])
+  create_maven_release.run(utils.MAVEN_ZIP)
+  create_maven_release.run(utils.MAVEN_ZIP_LIB, is_r8lib=True)
 
   # Generate and copy a full build without dependencies.
   gradle.RunGradleExcludeDeps([utils.R8, utils.R8_SRC])
@@ -164,6 +165,7 @@
       utils.COMPATPROGUARDLIB_JAR,
       utils.COMPATPROGUARDLIB_JAR + '.map',
       utils.MAVEN_ZIP,
+      utils.MAVEN_ZIP_LIB,
       utils.GENERATED_LICENSE,
     ]:
       file_name = os.path.basename(file)