Adds grpc 1.0.3 prebuilts

Will delete old version in follow up CL to test dependencies correctly

Test: N/A
Change-Id: I30d20b49bad6f1c52a036ac2e86b5740aef1ff5d
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/BUILD b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/BUILD
new file mode 100644
index 0000000..47b513b
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["protobuf-java-util-3.0.2.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2:pom",
+    source = "protobuf-java-util-3.0.2.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.jar b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.jar
new file mode 100644
index 0000000..88fbbf6
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.jar
Binary files differ
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.jar.sha1 b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.jar.sha1
new file mode 100644
index 0000000..b0997f9
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.jar.sha1
@@ -0,0 +1 @@
+8ec8e734385db24bbbeb3c7e99d130fc3567413b
\ No newline at end of file
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.pom b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.pom
new file mode 100644
index 0000000..58cc4b3
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.pom
@@ -0,0 +1,115 @@
+<?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>com.google.protobuf</groupId>
+    <artifactId>protobuf-parent</artifactId>
+    <version>3.0.2</version>
+  </parent>
+
+  <artifactId>protobuf-java-util</artifactId>
+  <packaging>bundle</packaging>
+
+  <name>Protocol Buffers [Util]</name>
+  <description>Utilities for Protocol Buffers</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>protobuf-java</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.code.gson</groupId>
+      <artifactId>gson</artifactId>
+      <version>2.3</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymockclassextension</artifactId>
+    </dependency>
+  </dependencies>
+
+  <properties>
+    <!-- Use the core proto dir so that we can call the core generation script -->
+    <test.proto.dir>../core/src/test/proto</test.proto.dir>
+  </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <!-- Generate the test protos -->
+          <execution>
+            <id>generate-test-sources</id>
+            <phase>generate-test-sources</phase>
+            <configuration>
+              <target>
+                <!-- Generate all of the test protos from the core module -->
+                <ant antfile="../core/generate-test-sources-build.xml"/>
+
+                <!-- Generate additional test protos for this module -->
+                <exec executable="${protoc}">
+                  <arg value="--java_out=${generated.testsources.dir}" />
+                  <arg value="--proto_path=${protobuf.source.dir}" />
+                  <arg value="--proto_path=src/test/proto" />
+                  <arg value="src/test/proto/com/google/protobuf/util/json_test.proto" />
+                </exec>
+              </target>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <!-- Add the generated test sources to the build -->
+          <generatedTestSourcesDirectory>${generated.testsources.dir}</generatedTestSourcesDirectory>
+        </configuration>
+      </plugin>
+
+      <!-- Configure the OSGI bundle -->
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL>
+            <Bundle-SymbolicName>com.google.protobuf.util</Bundle-SymbolicName>
+            <Export-Package>com.google.protobuf.util;version=${project.version}</Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+
+      <!-- Configure the fat jar to include all dependencies -->
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptorRefs>
+            <descriptorRef>jar-with-dependencies</descriptorRef>
+          </descriptorRefs>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.pom.sha1 b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.pom.sha1
new file mode 100644
index 0000000..5577276
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java-util/3.0.2/protobuf-java-util-3.0.2.pom.sha1
@@ -0,0 +1 @@
+a861143a143b27d0e448bdf5f884d76477f8efcc
\ No newline at end of file
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/BUILD b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/BUILD
new file mode 100644
index 0000000..635687e
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["protobuf-java-3.0.2.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2:pom",
+    source = "protobuf-java-3.0.2.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.jar b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.jar
new file mode 100644
index 0000000..2ab35dc
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.jar
Binary files differ
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.jar.sha1 b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.jar.sha1
new file mode 100644
index 0000000..0802e4c
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.jar.sha1
@@ -0,0 +1 @@
+ee55e8e697d10b6643d77bb1f686bac3b9ba8579
\ No newline at end of file
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.pom b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.pom
new file mode 100644
index 0000000..28bc99a
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.pom
@@ -0,0 +1,118 @@
+<?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>com.google.protobuf</groupId>
+    <artifactId>protobuf-parent</artifactId>
+    <version>3.0.2</version>
+  </parent>
+
+  <artifactId>protobuf-java</artifactId>
+  <packaging>bundle</packaging>
+
+  <name>Protocol Buffers [Core]</name>
+  <description>
+    Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an
+    efficient yet extensible format.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymockclassextension</artifactId>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <!-- Include core protos in the bundle as resources -->
+    <resources>
+      <resource>
+        <directory>${protobuf.source.dir}</directory>
+        <includes>
+          <include>google/protobuf/any.proto</include>
+          <include>google/protobuf/api.proto</include>
+          <include>google/protobuf/descriptor.proto</include>
+          <include>google/protobuf/duration.proto</include>
+          <include>google/protobuf/empty.proto</include>
+          <include>google/protobuf/field_mask.proto</include>
+          <include>google/protobuf/source_context.proto</include>
+          <include>google/protobuf/struct.proto</include>
+          <include>google/protobuf/timestamp.proto</include>
+          <include>google/protobuf/type.proto</include>
+          <include>google/protobuf/wrappers.proto</include>
+          <include>google/protobuf/compiler/plugin.proto</include>
+        </includes>
+      </resource>
+    </resources>
+
+    <plugins>
+      <!-- Use Antrun plugin to generate sources with protoc -->
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <!-- Generate core protos -->
+          <execution>
+            <id>generate-sources</id>
+            <phase>generate-sources</phase>
+            <configuration>
+              <target>
+                <ant antfile="generate-sources-build.xml"/>
+              </target>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+
+          <!-- Generate the test protos -->
+          <execution>
+            <id>generate-test-sources</id>
+            <phase>generate-test-sources</phase>
+            <configuration>
+              <target>
+                <ant antfile="generate-test-sources-build.xml"/>
+              </target>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+      <!-- Add the generated sources to the build -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <generatedSourcesDirectory>${generated.sources.dir}</generatedSourcesDirectory>
+          <generatedTestSourcesDirectory>${generated.testsources.dir}</generatedTestSourcesDirectory>
+        </configuration>
+      </plugin>
+
+      <!-- OSGI bundle configuration -->
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL>
+            <Bundle-SymbolicName>com.google.protobuf</Bundle-SymbolicName>
+            <Export-Package>com.google.protobuf;version=${project.version}</Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
diff --git a/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.pom.sha1 b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.pom.sha1
new file mode 100644
index 0000000..e0fc1d7
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/protobuf-java-3.0.2.pom.sha1
@@ -0,0 +1 @@
+5dc19d1f724edfb259119a773d951935a1d72bfd
\ No newline at end of file
diff --git a/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/BUILD b/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/BUILD
new file mode 100644
index 0000000..cdc7dd4
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/BUILD
@@ -0,0 +1,9 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/com/google/google/1:pom",
+    source = "protobuf-parent-3.0.2.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/protobuf-parent-3.0.2.pom b/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/protobuf-parent-3.0.2.pom
new file mode 100644
index 0000000..ccfb229
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/protobuf-parent-3.0.2.pom
@@ -0,0 +1,215 @@
+<?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>com.google</groupId>
+    <artifactId>google</artifactId>
+    <version>1</version>
+  </parent>
+
+  <groupId>com.google.protobuf</groupId>
+  <artifactId>protobuf-parent</artifactId>
+  <version>3.0.2</version>
+  <packaging>pom</packaging>
+
+  <name>Protocol Buffers [Parent]</name>
+  <inceptionYear>2008</inceptionYear>
+  <url>https://developers.google.com/protocol-buffers/</url>
+  <description>
+    Protocol Buffers are a way of encoding structured data in an efficient yet
+    extensible format.
+  </description>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+    <!-- These are relative to the submodules -->
+    <protobuf.basedir>${project.basedir}/../..</protobuf.basedir>
+    <protobuf.source.dir>${protobuf.basedir}/src</protobuf.source.dir>
+    <protoc>${protobuf.source.dir}/protoc</protoc>
+    <test.proto.dir>src/test/proto</test.proto.dir>
+    <generated.sources.dir>${project.build.directory}/generated-sources</generated.sources.dir>
+    <generated.testsources.dir>${project.build.directory}/generated-test-sources</generated.testsources.dir>
+    <generated.sources.lite.dir>${project.build.directory}/generated-sources-lite</generated.sources.lite.dir>
+    <generated.testsources.lite.dir>${project.build.directory}/generated-test-sources-lite</generated.testsources.lite.dir>
+  </properties>
+
+  <licenses>
+    <license>
+      <name>New BSD license</name>
+      <url>http://www.opensource.org/licenses/bsd-license.php</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <scm>
+    <url>https://github.com/google/protobuf</url>
+    <connection>scm:git:https://github.com/google/protobuf.git</connection>
+  </scm>
+
+  <distributionManagement>
+    <snapshotRepository>
+      <id>sonatype-nexus-staging</id>
+      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+    </snapshotRepository>
+    <repository>
+      <id>sonatype-nexus-staging</id>
+      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+    </repository>
+  </distributionManagement>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>4.12</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.easymock</groupId>
+        <artifactId>easymock</artifactId>
+        <version>2.2</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.easymock</groupId>
+        <artifactId>easymockclassextension</artifactId>
+        <version>2.2.1</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>com.google.guava</groupId>
+        <artifactId>guava</artifactId>
+        <version>18.0</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>3.3</version>
+          <configuration>
+            <source>1.6</source>
+            <target>1.6</target>
+          </configuration>
+        </plugin>
+        <plugin>
+          <artifactId>maven-source-plugin</artifactId>
+          <version>2.4</version>
+          <executions>
+            <execution>
+              <id>attach-sources</id>
+              <goals>
+                <goal>jar-no-fork</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.10.3</version>
+          <executions>
+            <execution>
+              <id>attach-javadocs</id>
+              <goals>
+                <goal>jar</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>2.6</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>build-helper-maven-plugin</artifactId>
+          <version>1.10</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>maven-bundle-plugin</artifactId>
+          <version>3.0.1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-antrun-plugin</artifactId>
+          <version>1.8</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <version>2.2.1</version>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <goals>
+                  <goal>jar-no-fork</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.9.1</version>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.6</version>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.sonatype.plugins</groupId>
+            <artifactId>nexus-staging-maven-plugin</artifactId>
+            <version>1.6.6</version>
+            <extensions>true</extensions>
+            <configuration>
+              <serverId>sonatype-nexus-staging</serverId>
+              <nexusUrl>https://oss.sonatype.org/</nexusUrl>
+              <autoReleaseAfterClose>false</autoReleaseAfterClose>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+  <modules>
+    <module>core</module>
+    <!-- <module>lite</module> -->
+    <module>util</module>
+  </modules>
+
+</project>
diff --git a/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/protobuf-parent-3.0.2.pom.sha1 b/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/protobuf-parent-3.0.2.pom.sha1
new file mode 100644
index 0000000..f552e0e
--- /dev/null
+++ b/common/m2/repository/com/google/protobuf/protobuf-parent/3.0.2/protobuf-parent-3.0.2.pom.sha1
@@ -0,0 +1 @@
+f00b6e9a0501e0d4870a76b8e877e3ec0d70dd00
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-all/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-all/1.0.3/BUILD
new file mode 100644
index 0000000..34c79da
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-all/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-all-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-all-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar b/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar
new file mode 100644
index 0000000..072232c
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar.sha1
new file mode 100644
index 0000000..fe148ab
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar.sha1
@@ -0,0 +1 @@
+1f692cbbab010c1011ce8218dfabe7e256067c11
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.pom b/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.pom
new file mode 100644
index 0000000..1caf6ad
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.pom
@@ -0,0 +1,100 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-all</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-all</name>
+  <description>gRPC: All</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-netty</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-core</artifactId>
+      <version>[1.0.3]</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-stub</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-auth</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-context</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-protobuf</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-protobuf-lite</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-okhttp</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-protobuf-nano</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.pom.sha1
new file mode 100644
index 0000000..987d50e
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.pom.sha1
@@ -0,0 +1 @@
+359bdb984cab3b31dc64af2c39ca4c8b012c08b2
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-auth/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-auth/1.0.3/BUILD
new file mode 100644
index 0000000..bd62254
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-auth/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-auth-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-auth-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.jar b/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.jar
new file mode 100644
index 0000000..970ca37
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.jar.sha1
new file mode 100644
index 0000000..b0faa04
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.jar.sha1
@@ -0,0 +1 @@
+75ef63b771810cf64555d443a619df6dc34fa424
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.pom b/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.pom
new file mode 100644
index 0000000..b9f7823
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.pom
@@ -0,0 +1,64 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-auth</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-auth</name>
+  <description>gRpc: Auth</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.google.auth</groupId>
+      <artifactId>google-auth-library-credentials</artifactId>
+      <version>0.4.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-core</artifactId>
+      <version>[1.0.3]</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.auth</groupId>
+      <artifactId>google-auth-library-oauth2-http</artifactId>
+      <version>0.4.0</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.pom.sha1
new file mode 100644
index 0000000..a03f990
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-auth/1.0.3/grpc-auth-1.0.3.pom.sha1
@@ -0,0 +1 @@
+9726c17c2663c4e42fea73cd9783f7a18bfd17e0
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-context/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-context/1.0.3/BUILD
new file mode 100644
index 0000000..bd25244
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-context/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-context-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-context-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.jar b/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.jar
new file mode 100644
index 0000000..22a78bc
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.jar.sha1
new file mode 100644
index 0000000..4212ccd
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.jar.sha1
@@ -0,0 +1 @@
+fc29af09029527ac52bc9bb97ef27a645709aeea
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.pom b/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.pom
new file mode 100644
index 0000000..86aaa42
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.pom
@@ -0,0 +1,52 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-context</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-context</name>
+  <description>gRPC: Context</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-testing</artifactId>
+      <version>1.0.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.pom.sha1
new file mode 100644
index 0000000..9dac011
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.pom.sha1
@@ -0,0 +1 @@
+d61f7b5b3935a0858e7bb9fcc85911e9980463e2
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-core/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-core/1.0.3/BUILD
new file mode 100644
index 0000000..55cb493
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-core/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-core-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-core-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar b/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar
new file mode 100644
index 0000000..5f914bf
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar.sha1
new file mode 100644
index 0000000..3451fba
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar.sha1
@@ -0,0 +1 @@
+104435f03a23f5680a392a9586d03995e45b9d35
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.pom b/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.pom
new file mode 100644
index 0000000..7fee85c
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.pom
@@ -0,0 +1,70 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-core</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-core</name>
+  <description>gRPC: Core</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>19.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-testing</artifactId>
+      <version>1.0.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-context</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.code.findbugs</groupId>
+      <artifactId>jsr305</artifactId>
+      <version>3.0.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.pom.sha1
new file mode 100644
index 0000000..eb01616
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.pom.sha1
@@ -0,0 +1 @@
+2d0a3b31d8b5b6c1b2242deee7d094696227ec64
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-core/maven-metadata-JCenter.xml b/common/m2/repository/io/grpc/grpc-core/maven-metadata-JCenter.xml
new file mode 100644
index 0000000..ace28b2
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-core/maven-metadata-JCenter.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>io.grpc</groupId>
+  <artifactId>grpc-core</artifactId>
+  <version>1.1.2</version>
+  <versioning>
+    <latest>1.1.2</latest>
+    <release>1.1.2</release>
+    <versions>
+      <version>0.7.0</version>
+      <version>0.7.1</version>
+      <version>0.7.2</version>
+      <version>0.8.0</version>
+      <version>0.9.0</version>
+      <version>0.9.1</version>
+      <version>0.12.0</version>
+      <version>0.13.0</version>
+      <version>0.13.1</version>
+      <version>0.13.2</version>
+      <version>0.14.0</version>
+      <version>0.14.1</version>
+      <version>0.15.0</version>
+      <version>1.0.0</version>
+      <version>1.0.0-pre1</version>
+      <version>1.0.0-pre2</version>
+      <version>1.0.1</version>
+      <version>1.0.2</version>
+      <version>1.0.3</version>
+      <version>1.1.1</version>
+      <version>1.1.2</version>
+    </versions>
+    <lastUpdated>20170207214851</lastUpdated>
+  </versioning>
+</metadata>
diff --git a/common/m2/repository/io/grpc/grpc-core/maven-metadata-JCenter.xml.sha1 b/common/m2/repository/io/grpc/grpc-core/maven-metadata-JCenter.xml.sha1
new file mode 100644
index 0000000..bc23ecf
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-core/maven-metadata-JCenter.xml.sha1
@@ -0,0 +1 @@
+d6ed5568784ccc3e95b3b95e078d02d182444b74
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-core/maven-metadata-Maven Central.xml b/common/m2/repository/io/grpc/grpc-core/maven-metadata-Maven Central.xml
index 8fe870e..9315895 100644
--- a/common/m2/repository/io/grpc/grpc-core/maven-metadata-Maven Central.xml
+++ b/common/m2/repository/io/grpc/grpc-core/maven-metadata-Maven Central.xml
@@ -3,8 +3,8 @@
   <groupId>io.grpc</groupId>
   <artifactId>grpc-core</artifactId>
   <versioning>
-    <latest>1.0.1</latest>
-    <release>1.0.1</release>
+    <latest>1.1.2</latest>
+    <release>1.1.2</release>
     <versions>
       <version>0.7.0</version>
       <version>0.7.1</version>
@@ -23,7 +23,11 @@
       <version>1.0.0-pre1</version>
       <version>1.0.0-pre2</version>
       <version>1.0.1</version>
+      <version>1.0.2</version>
+      <version>1.0.3</version>
+      <version>1.1.1</version>
+      <version>1.1.2</version>
     </versions>
-    <lastUpdated>20160914231344</lastUpdated>
+    <lastUpdated>20170207213902</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/io/grpc/grpc-core/maven-metadata-Maven Central.xml.sha1 b/common/m2/repository/io/grpc/grpc-core/maven-metadata-Maven Central.xml.sha1
index 9861f12..7410ca0 100644
--- a/common/m2/repository/io/grpc/grpc-core/maven-metadata-Maven Central.xml.sha1
+++ b/common/m2/repository/io/grpc/grpc-core/maven-metadata-Maven Central.xml.sha1
@@ -1 +1 @@
-6b040d03244d285d6b1f40df6bd397f5a0bc63a6
\ No newline at end of file
+3dcc993f5fd1866e09a4d582d8f6f23a21334023
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-core/resolver-status.properties b/common/m2/repository/io/grpc/grpc-core/resolver-status.properties
index 48736cd..f9a01c4 100644
--- a/common/m2/repository/io/grpc/grpc-core/resolver-status.properties
+++ b/common/m2/repository/io/grpc/grpc-core/resolver-status.properties
@@ -1,3 +1,4 @@
 #NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
-#Fri Nov 18 15:17:57 GMT 2016
-maven-metadata-Maven\ Central.xml.lastUpdated=1479482277664
+#Tue Feb 21 15:24:13 PST 2017
+maven-metadata-JCenter.xml.lastUpdated=1487719453167
+maven-metadata-Maven\ Central.xml.lastUpdated=1487719453094
diff --git a/common/m2/repository/io/grpc/grpc-netty/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-netty/1.0.3/BUILD
new file mode 100644
index 0000000..15ccd79
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-netty/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-netty-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-netty-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.jar b/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.jar
new file mode 100644
index 0000000..6d56cc4
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.jar.sha1
new file mode 100644
index 0000000..b0e36fb
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.jar.sha1
@@ -0,0 +1 @@
+d473fe54759e38cd2e88e2994817421e193adebe
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.pom b/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.pom
new file mode 100644
index 0000000..160245a
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.pom
@@ -0,0 +1,70 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-netty</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-netty</name>
+  <description>gRPC: Netty</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-core</artifactId>
+      <version>[1.0.3]</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-testing</artifactId>
+      <version>1.0.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-handler-proxy</artifactId>
+      <version>4.1.6.Final</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-codec-http2</artifactId>
+      <version>[4.1.6.Final]</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.pom.sha1
new file mode 100644
index 0000000..42dcf23
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-netty/1.0.3/grpc-netty-1.0.3.pom.sha1
@@ -0,0 +1 @@
+2aa4276079d00b4508a459b4a59ee54641bdec60
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/BUILD
new file mode 100644
index 0000000..245b5e5
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-okhttp-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-okhttp-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar
new file mode 100644
index 0000000..cd5676d
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar.sha1
new file mode 100644
index 0000000..792da26
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar.sha1
@@ -0,0 +1 @@
+807c14b8be5c8a092cd2bd787a9313b1cdd4f213
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.pom b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.pom
new file mode 100644
index 0000000..5512d5c
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.pom
@@ -0,0 +1,76 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-okhttp</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-okhttp</name>
+  <description>gRPC: OkHttp</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-netty</artifactId>
+      <version>1.0.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.squareup.okio</groupId>
+      <artifactId>okio</artifactId>
+      <version>1.6.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-core</artifactId>
+      <version>[1.0.3]</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-testing</artifactId>
+      <version>1.0.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.squareup.okhttp</groupId>
+      <artifactId>okhttp</artifactId>
+      <version>2.5.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.pom.sha1
new file mode 100644
index 0000000..d17cb38
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.pom.sha1
@@ -0,0 +1 @@
+b2434932a122bcf1659508ee9240de4ad76f864f
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/BUILD
new file mode 100644
index 0000000..348d355
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-protobuf-lite-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-protobuf-lite-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar
new file mode 100644
index 0000000..38186c7
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar.sha1
new file mode 100644
index 0000000..78eed40
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar.sha1
@@ -0,0 +1 @@
+016a1669179ab06c7b74d3b1c5959b28f1caa6a1
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.pom b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.pom
new file mode 100644
index 0000000..cb33c1a
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.pom
@@ -0,0 +1,64 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-protobuf-lite</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-protobuf-lite</name>
+  <description>gRPC: Protobuf Lite</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>19.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-core</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-lite</artifactId>
+      <version>3.0.1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.pom.sha1
new file mode 100644
index 0000000..bfec1ed
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.pom.sha1
@@ -0,0 +1 @@
+dbd051a9c6db1c0052bcd72c56f04e693f4393d9
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/BUILD
new file mode 100644
index 0000000..d686457
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-protobuf-nano-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-protobuf-nano-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.jar b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.jar
new file mode 100644
index 0000000..684ece9
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.jar.sha1
new file mode 100644
index 0000000..5313b9c
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.jar.sha1
@@ -0,0 +1 @@
+31a5d9a20ccc3934f354b7a77e361eeb7fad2c91
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.pom b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.pom
new file mode 100644
index 0000000..3e56b88
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.pom
@@ -0,0 +1,64 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-protobuf-nano</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-protobuf-nano</name>
+  <description>gRPC: Protobuf Nano</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>19.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-core</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf.nano</groupId>
+      <artifactId>protobuf-javanano</artifactId>
+      <version>3.0.0-alpha-5</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.pom.sha1
new file mode 100644
index 0000000..f9bead4
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf-nano/1.0.3/grpc-protobuf-nano-1.0.3.pom.sha1
@@ -0,0 +1 @@
+0893542b029d3db80735bc95d0f3095aff6ea4cf
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/BUILD
new file mode 100644
index 0000000..43512ce
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-protobuf-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-protobuf-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.jar b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.jar
new file mode 100644
index 0000000..2f61579
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.jar.sha1
new file mode 100644
index 0000000..c24e30e
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.jar.sha1
@@ -0,0 +1 @@
+330c3da988bdc9bf336218ae12b2b0ee86767775
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.pom b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.pom
new file mode 100644
index 0000000..de4c3d6
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.pom
@@ -0,0 +1,82 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-protobuf</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-protobuf</name>
+  <description>gRPC: Protobuf</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>19.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java-util</artifactId>
+      <version>3.0.2</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-core</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+      <version>3.0.2</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-protobuf-lite</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>protobuf-lite</artifactId>
+          <groupId>com.google.protobuf</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.pom.sha1
new file mode 100644
index 0000000..9c6434f
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/grpc-protobuf-1.0.3.pom.sha1
@@ -0,0 +1 @@
+331dc48f90429d718b8d20b32e055436acf5915d
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-stub/1.0.3/BUILD b/common/m2/repository/io/grpc/grpc-stub/1.0.3/BUILD
new file mode 100644
index 0000000..216bfc7
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-stub/1.0.3/BUILD
@@ -0,0 +1,15 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["grpc-stub-1.0.3.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    source = "grpc-stub-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar b/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar
new file mode 100644
index 0000000..701f962
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar
Binary files differ
diff --git a/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar.sha1 b/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar.sha1
new file mode 100644
index 0000000..4005c2d
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar.sha1
@@ -0,0 +1 @@
+4af1464041224cdef2efbeafbe948f942a3fb028
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.pom b/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.pom
new file mode 100644
index 0000000..99f446d
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.pom
@@ -0,0 +1,52 @@
+<?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>io.grpc</groupId>
+  <artifactId>grpc-stub</artifactId>
+  <version>1.0.3</version>
+  <name>io.grpc:grpc-stub</name>
+  <description>gRPC: Stub</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-core</artifactId>
+      <version>1.0.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.pom.sha1
new file mode 100644
index 0000000..01ae588
--- /dev/null
+++ b/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.pom.sha1
@@ -0,0 +1 @@
+50941de2b74f7b8303238b634b6f6b26ddf0e8f5
\ No newline at end of file
diff --git a/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/BUILD b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/BUILD
new file mode 100644
index 0000000..3bc77a3
--- /dev/null
+++ b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/BUILD
@@ -0,0 +1,18 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_pom(
+    name = "pom",
+    source = "protoc-gen-grpc-java-1.0.3.pom",
+    visibility = ["//visibility:public"],
+)
+
+filegroup(
+    name = "exe",
+    srcs = select({
+        "//prebuilts/tools/common/m2:osx-x86_64": ["protoc-gen-grpc-java-1.0.3-osx-x86_64.exe"],
+        "//prebuilts/tools/common/m2:windows-x86_64": ["protoc-gen-grpc-java-1.0.3-windows-x86_64.exe"],
+        "//prebuilts/tools/common/m2:linux-x86_64": ["protoc-gen-grpc-java-1.0.3-linux-x86_64.exe"],
+    }),
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-linux-x86_64.exe b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-linux-x86_64.exe
new file mode 100755
index 0000000..6cc360d
--- /dev/null
+++ b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-linux-x86_64.exe
Binary files differ
diff --git a/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-osx-x86_64.exe b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-osx-x86_64.exe
new file mode 100644
index 0000000..b29797d
--- /dev/null
+++ b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-osx-x86_64.exe
Binary files differ
diff --git a/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-windows-x86_32.exe b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-windows-x86_32.exe
new file mode 100644
index 0000000..a17fe4d
--- /dev/null
+++ b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-windows-x86_32.exe
Binary files differ
diff --git a/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-windows-x86_64.exe b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-windows-x86_64.exe
new file mode 100644
index 0000000..9deabdf
--- /dev/null
+++ b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-windows-x86_64.exe
Binary files differ
diff --git a/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3.pom b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3.pom
new file mode 100644
index 0000000..80066cb
--- /dev/null
+++ b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3.pom
@@ -0,0 +1,59 @@
+<?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>io.grpc</groupId>
+  <artifactId>protoc-gen-grpc-java</artifactId>
+  <version>1.0.3</version>
+  <packaging>pom</packaging>
+  <name>io.grpc:grpc-compiler</name>
+  <description>The protoc plugin for gRPC Java</description>
+  <url>https://github.com/grpc/grpc-java</url>
+  <licenses>
+    <license>
+      <name>BSD 3-Clause</name>
+      <url>http://opensource.org/licenses/BSD-3-Clause</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>grpc.io</id>
+      <name>gRPC Contributors</name>
+      <email>grpc-io@googlegroups.com</email>
+      <url>http://grpc.io/</url>
+      <organization>Google, Inc.</organization>
+      <organizationUrl>https://www.google.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/grpc/grpc-java.git</connection>
+    <developerConnection>scm:git:git@github.com:grpc/grpc-java.git</developerConnection>
+    <url>https://github.com/grpc/grpc-java</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-stub</artifactId>
+      <version>1.0.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.grpc</groupId>
+      <artifactId>grpc-protobuf</artifactId>
+      <version>1.0.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>1.9.5</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3.pom.sha1 b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3.pom.sha1
new file mode 100644
index 0000000..d44b456
--- /dev/null
+++ b/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3.pom.sha1
@@ -0,0 +1 @@
+7aa40bc117c8d3226da237e12f20696a1f864e8f
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/BUILD
new file mode 100644
index 0000000..49f34da
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-buffer-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-buffer-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.jar
new file mode 100644
index 0000000..eb9571b
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..a1b16cc
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+dc1a304ee7c448bfa241f60c41948db6f12b653b
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.pom
new file mode 100644
index 0000000..c79777a
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.pom
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2012 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-buffer</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Buffer</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..ad3effc
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/netty-buffer-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+5bdd5d25be073aa43439a0127b9ce04eeac53bba
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/BUILD
new file mode 100644
index 0000000..de5a5ca
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-codec-http-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-codec-http-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.jar
new file mode 100644
index 0000000..59087aa
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..31ba47f
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+ee6c65cb3f39f212241e9131dc05a837e776fd70
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.pom
new file mode 100644
index 0000000..a6dda96
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.pom
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2012 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-codec-http</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Codec/HTTP</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-codec</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-handler</artifactId>
+      <version>${project.version}</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>com.jcraft</groupId>
+      <artifactId>jzlib</artifactId>
+      <optional>true</optional>
+    </dependency>
+  </dependencies>
+</project>
+
diff --git a/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..603728d
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/netty-codec-http-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+7d77a7bf3b96d903edad5b3a0afec125549568e4
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/BUILD
new file mode 100644
index 0000000..09e7ccd
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-codec-http2-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-codec-http2-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.jar
new file mode 100644
index 0000000..f805b3a
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..52698ad
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+3c7cf39825f8ec4e4da848b4e237b29257750cf3
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.pom
new file mode 100644
index 0000000..92e0012
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.pom
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2014 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-codec-http2</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Codec/HTTP2</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-codec-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-handler</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.jcraft</groupId>
+      <artifactId>jzlib</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>com.google.code.gson</groupId>
+      <artifactId>gson</artifactId>
+    </dependency>
+  </dependencies>
+</project>
+
diff --git a/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..54417e6
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/netty-codec-http2-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+7ffdcfdb969326528683829e80efa76ff4968e14
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-JCenter.xml b/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-JCenter.xml
new file mode 100644
index 0000000..223e41c
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-JCenter.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>io.netty</groupId>
+  <artifactId>netty-codec-http2</artifactId>
+  <version>5.0.0.Alpha2</version>
+  <versioning>
+    <latest>5.0.0.Alpha2</latest>
+    <release>5.0.0.Alpha2</release>
+    <versions>
+      <version>4.1.0.Beta4</version>
+      <version>4.1.0.Beta5</version>
+      <version>4.1.0.Beta6</version>
+      <version>4.1.0.Beta7</version>
+      <version>4.1.0.Beta8</version>
+      <version>4.1.0.CR1</version>
+      <version>4.1.0.CR2</version>
+      <version>4.1.0.CR3</version>
+      <version>4.1.0.CR4</version>
+      <version>4.1.0.CR5</version>
+      <version>4.1.0.CR6</version>
+      <version>4.1.0.CR7</version>
+      <version>4.1.0.Final</version>
+      <version>4.1.1.Final</version>
+      <version>4.1.2.Final</version>
+      <version>4.1.3.Final</version>
+      <version>4.1.4.Final</version>
+      <version>4.1.5.Final</version>
+      <version>4.1.6.Final</version>
+      <version>4.1.7.Final</version>
+      <version>4.1.8.Final</version>
+      <version>5.0.0.Alpha2</version>
+    </versions>
+    <lastUpdated>20170130201705</lastUpdated>
+  </versioning>
+</metadata>
diff --git a/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-JCenter.xml.sha1 b/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-JCenter.xml.sha1
new file mode 100644
index 0000000..38251ca
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-JCenter.xml.sha1
@@ -0,0 +1 @@
+5631f027c5e35669d621e6ef8acc8c012bb7320b
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-Maven Central.xml b/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-Maven Central.xml
index 05cb432..be9eff8 100644
--- a/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-Maven Central.xml
+++ b/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-Maven Central.xml
@@ -25,8 +25,10 @@
       <version>4.1.4.Final</version>
       <version>4.1.5.Final</version>
       <version>4.1.6.Final</version>
+      <version>4.1.7.Final</version>
+      <version>4.1.8.Final</version>
       <version>5.0.0.Alpha2</version>
     </versions>
-    <lastUpdated>20161014115817</lastUpdated>
+    <lastUpdated>20170130171844</lastUpdated>
   </versioning>
 </metadata>
diff --git a/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-Maven Central.xml.sha1 b/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-Maven Central.xml.sha1
index f39ad26..6aedb15 100644
--- a/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-Maven Central.xml.sha1
+++ b/common/m2/repository/io/netty/netty-codec-http2/maven-metadata-Maven Central.xml.sha1
@@ -1 +1 @@
-81a5fc9168f7322553811f0a58fde65e0f9f9c14
\ No newline at end of file
+0a706d1a33358dbd08c2b2fbbce548ae26fc4baf
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec-http2/resolver-status.properties b/common/m2/repository/io/netty/netty-codec-http2/resolver-status.properties
index f2ea886..15e43f0 100644
--- a/common/m2/repository/io/netty/netty-codec-http2/resolver-status.properties
+++ b/common/m2/repository/io/netty/netty-codec-http2/resolver-status.properties
@@ -1,3 +1,4 @@
 #NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
-#Fri Nov 18 15:17:57 GMT 2016
-maven-metadata-Maven\ Central.xml.lastUpdated=1479482277710
+#Tue Feb 21 15:24:15 PST 2017
+maven-metadata-JCenter.xml.lastUpdated=1487719455961
+maven-metadata-Maven\ Central.xml.lastUpdated=1487719455910
diff --git a/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/BUILD
new file mode 100644
index 0000000..bc6c47d
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-codec-socks-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-codec-socks-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.jar
new file mode 100644
index 0000000..2bbf8ea
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..94a20ca
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+4731b98ef9557de20fc4124b7fb12ed13b5910d9
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.pom
new file mode 100644
index 0000000..eb67466
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.pom
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2012 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-codec-socks</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Codec/Socks</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-codec</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+</project>
+
diff --git a/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..19379bd
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/netty-codec-socks-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+be2a43864ce4b28360950fb2513805f567f8a6bf
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/BUILD
new file mode 100644
index 0000000..1e049b2
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-codec-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-codec-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.jar
new file mode 100644
index 0000000..46e6d34
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..45cf352
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+086ce3c559af6759a0b991b9ad2faec20981e18e
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.pom
new file mode 100644
index 0000000..b79499c
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.pom
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2012 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-codec</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Codec</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-transport</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf.nano</groupId>
+      <artifactId>protobuf-javanano</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.marshalling</groupId>
+      <artifactId>jboss-marshalling</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>com.jcraft</groupId>
+      <artifactId>jzlib</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>com.ning</groupId>
+      <artifactId>compress-lzf</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>net.jpountz.lz4</groupId>
+      <artifactId>lz4</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>com.github.jponge</groupId>
+      <artifactId>lzma-java</artifactId>
+      <optional>true</optional>
+    </dependency>
+
+    <!-- Test dependencies for jboss marshalling encoder/decoder -->
+    <dependency>
+      <groupId>org.jboss.marshalling</groupId>
+      <artifactId>jboss-marshalling-serial</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.marshalling</groupId>
+      <artifactId>jboss-marshalling-river</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <!-- Test dependency for Bzip2 compression codec -->
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
+
diff --git a/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..8d747e3
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-codec/4.1.6.Final/netty-codec-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+694297beaf48c07355b2782c2d893950e0f433ac
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-common/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-common/4.1.6.Final/BUILD
new file mode 100644
index 0000000..21aefdf
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-common/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-common-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-common-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.jar
new file mode 100644
index 0000000..f119295
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..1e2bbb9
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+654e4d8e87bc442be5c1d82d0369a3885f7168ea
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.pom
new file mode 100644
index 0000000..f062772
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.pom
@@ -0,0 +1,286 @@
+<?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">

+  <parent>

+    <artifactId>netty-parent</artifactId>

+    <groupId>io.netty</groupId>

+    <version>4.1.6.Final</version>

+  </parent>

+  <modelVersion>4.0.0</modelVersion>

+  <artifactId>netty-common</artifactId>

+  <name>Netty/Common</name>

+  <build>

+    <plugins>

+      <plugin>

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

+        <executions>

+          <execution>

+            <phase>package</phase>

+            <goals>

+              <goal>shade</goal>

+            </goals>

+            <configuration>

+              <artifactSet>

+                <includes>

+                  <include>org.jctools</include>

+                </includes>

+              </artifactSet>

+              <relocations>

+                <relocation>

+                  <pattern>org.jctools.</pattern>

+                  <shadedPattern>io.netty.util.internal.shaded.org.jctools.</shadedPattern>

+                </relocation>

+              </relocations>

+              <minimizeJar>true</minimizeJar>

+            </configuration>

+          </execution>

+        </executions>

+      </plugin>

+      <plugin>

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

+        <artifactId>build-helper-maven-plugin</artifactId>

+        <version>1.10</version>

+        <executions>

+          <execution>

+            <id>add-source</id>

+            <phase>generate-sources</phase>

+            <goals>

+              <goal>add-source</goal>

+            </goals>

+            <configuration>

+              <sources>

+                <source>${collection.src.dir}</source>

+              </sources>

+            </configuration>

+          </execution>

+          <execution>

+            <id>add-test-source</id>

+            <phase>generate-test-sources</phase>

+            <goals>

+              <goal>add-test-source</goal>

+            </goals>

+            <configuration>

+              <sources>

+                <source>${collection.testsrc.dir}</source>

+              </sources>

+            </configuration>

+          </execution>

+        </executions>

+      </plugin>

+      <plugin>

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

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

+        <version>2.0</version>

+        <executions>

+          <execution>

+            <id>generate-collections</id>

+            <phase>generate-sources</phase>

+            <goals>

+              <goal>execute</goal>

+            </goals>

+            <configuration>

+              <source>${project.basedir}/src/main/script/codegen.groovy</source>

+            </configuration>

+          </execution>

+        </executions>

+        <dependencies>

+          <dependency>

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

+            <artifactId>groovy-all</artifactId>

+            <version>2.4.7</version>

+          </dependency>

+          <dependency>

+            <groupId>ant</groupId>

+            <artifactId>ant-optional</artifactId>

+            <version>1.5.3-1</version>

+          </dependency>

+        </dependencies>

+      </plugin>

+      <plugin>

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

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

+        <version>2.5.4</version>

+        <executions>

+          <execution>

+            <id>generate-manifest</id>

+            <phase>process-classes</phase>

+            <goals>

+              <goal>manifest</goal>

+            </goals>

+            <configuration>

+              <instructions>

+                <DynamicImport-Package>*</DynamicImport-Package>

+                <Import-Package>!org.jctools.*;sun.misc;resolution:=optional;*</Import-Package>

+              </instructions>

+            </configuration>

+          </execution>

+        </executions>

+      </plugin>

+    </plugins>

+  </build>

+  <dependencies>

+    <dependency>

+      <groupId>org.javassist</groupId>

+      <artifactId>javassist</artifactId>

+      <version>3.20.0-GA</version>

+      <scope>compile</scope>

+      <optional>true</optional>

+    </dependency>

+    <dependency>

+      <groupId>org.slf4j</groupId>

+      <artifactId>slf4j-api</artifactId>

+      <version>1.7.21</version>

+      <scope>compile</scope>

+      <optional>true</optional>

+    </dependency>

+    <dependency>

+      <groupId>commons-logging</groupId>

+      <artifactId>commons-logging</artifactId>

+      <version>1.2</version>

+      <scope>compile</scope>

+      <optional>true</optional>

+    </dependency>

+    <dependency>

+      <groupId>log4j</groupId>

+      <artifactId>log4j</artifactId>

+      <version>1.2.17</version>

+      <scope>compile</scope>

+      <exclusions>

+        <exclusion>

+          <artifactId>mail</artifactId>

+          <groupId>javax.mail</groupId>

+        </exclusion>

+        <exclusion>

+          <artifactId>jms</artifactId>

+          <groupId>javax.jms</groupId>

+        </exclusion>

+        <exclusion>

+          <artifactId>jmxtools</artifactId>

+          <groupId>com.sun.jdmk</groupId>

+        </exclusion>

+        <exclusion>

+          <artifactId>jmxri</artifactId>

+          <groupId>com.sun.jmx</groupId>

+        </exclusion>

+      </exclusions>

+      <optional>true</optional>

+    </dependency>

+    <dependency>

+      <groupId>org.apache.logging.log4j</groupId>

+      <artifactId>log4j-api</artifactId>

+      <version>2.6.2</version>

+      <scope>compile</scope>

+      <optional>true</optional>

+    </dependency>

+    <dependency>

+      <groupId>org.apache.logging.log4j</groupId>

+      <artifactId>log4j-core</artifactId>

+      <version>2.6.2</version>

+      <scope>test</scope>

+    </dependency>

+    <dependency>

+      <groupId>junit</groupId>

+      <artifactId>junit</artifactId>

+      <version>4.12</version>

+      <scope>test</scope>

+      <exclusions>

+        <exclusion>

+          <artifactId>hamcrest-core</artifactId>

+          <groupId>org.hamcrest</groupId>

+        </exclusion>

+      </exclusions>

+    </dependency>

+    <dependency>

+      <groupId>io.netty</groupId>

+      <artifactId>netty-build</artifactId>

+      <version>22</version>

+      <scope>test</scope>

+      <exclusions>

+        <exclusion>

+          <artifactId>checkstyle</artifactId>

+          <groupId>com.puppycrawl.tools</groupId>

+        </exclusion>

+      </exclusions>

+    </dependency>

+    <dependency>

+      <groupId>org.hamcrest</groupId>

+      <artifactId>hamcrest-library</artifactId>

+      <version>1.3</version>

+      <scope>test</scope>

+      <exclusions>

+        <exclusion>

+          <artifactId>hamcrest-core</artifactId>

+          <groupId>org.hamcrest</groupId>

+        </exclusion>

+      </exclusions>

+    </dependency>

+    <dependency>

+      <groupId>org.easymock</groupId>

+      <artifactId>easymock</artifactId>

+      <version>3.4</version>

+      <scope>test</scope>

+      <exclusions>

+        <exclusion>

+          <artifactId>objenesis</artifactId>

+          <groupId>org.objenesis</groupId>

+        </exclusion>

+      </exclusions>

+    </dependency>

+    <dependency>

+      <groupId>org.easymock</groupId>

+      <artifactId>easymockclassextension</artifactId>

+      <version>3.2</version>

+      <scope>test</scope>

+    </dependency>

+    <dependency>

+      <groupId>org.jmock</groupId>

+      <artifactId>jmock-junit4</artifactId>

+      <version>2.8.2</version>

+      <scope>test</scope>

+      <exclusions>

+        <exclusion>

+          <artifactId>junit-dep</artifactId>

+          <groupId>junit</groupId>

+        </exclusion>

+        <exclusion>

+          <artifactId>jmock</artifactId>

+          <groupId>org.jmock</groupId>

+        </exclusion>

+      </exclusions>

+    </dependency>

+    <dependency>

+      <groupId>org.mockito</groupId>

+      <artifactId>mockito-core</artifactId>

+      <version>1.10.19</version>

+      <scope>test</scope>

+      <exclusions>

+        <exclusion>

+          <artifactId>objenesis</artifactId>

+          <groupId>org.objenesis</groupId>

+        </exclusion>

+        <exclusion>

+          <artifactId>hamcrest-core</artifactId>

+          <groupId>org.hamcrest</groupId>

+        </exclusion>

+      </exclusions>

+    </dependency>

+    <dependency>

+      <groupId>ch.qos.logback</groupId>

+      <artifactId>logback-classic</artifactId>

+      <version>1.1.7</version>

+      <scope>test</scope>

+      <exclusions>

+        <exclusion>

+          <artifactId>logback-core</artifactId>

+          <groupId>ch.qos.logback</groupId>

+        </exclusion>

+      </exclusions>

+    </dependency>

+  </dependencies>

+  <properties>

+    <collection.template.test.dir>${project.basedir}/src/test/templates</collection.template.test.dir>

+    <collection.testsrc.dir>${project.build.directory}/generated-test-sources/collections/java</collection.testsrc.dir>

+    <collection.template.dir>${project.basedir}/src/main/templates</collection.template.dir>

+    <collection.src.dir>${project.build.directory}/generated-sources/collections/java</collection.src.dir>

+  </properties>

+</project>

+

diff --git a/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..5cbe51b
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-common/4.1.6.Final/netty-common-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+7875a94a5e84efd6df0413e16b8b94e72c2de45c
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/BUILD
new file mode 100644
index 0000000..3c08005
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-handler-proxy-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-handler-proxy-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.jar
new file mode 100644
index 0000000..b66b806
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..d658cb3
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+2028f80883012becbb54162d9ebb9017905aca38
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.pom
new file mode 100644
index 0000000..d30ee1a
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.pom
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2014 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-handler-proxy</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Handler/Proxy</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-transport</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-codec-socks</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-codec-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-handler</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
+
diff --git a/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..d5f3133
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/netty-handler-proxy-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+a8539855a4ac5ace9176082080708b9f23596d12
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-handler/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/BUILD
new file mode 100644
index 0000000..1d96ccc
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-handler-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-handler-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.jar
new file mode 100644
index 0000000..283ae99
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..9cfb2d9
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+a24e92d67e467a3b97ff63642ab56637990685fd
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.pom
new file mode 100644
index 0000000..c7cc47d
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.pom
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2012 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-handler</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Handler</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-buffer</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-transport</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-codec</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>${tcnative.artifactId}</artifactId>
+      <classifier>${tcnative.classifier}</classifier>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcpkix-jdk15on</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.npn</groupId>
+      <artifactId>npn-api</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.alpn</groupId>
+      <artifactId>alpn-api</artifactId>
+      <optional>true</optional>
+    </dependency>
+  </dependencies>
+</project>
+
diff --git a/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..8bbc3f8
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-handler/4.1.6.Final/netty-handler-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+a110112ebe90748a9ee921d719cf8b0dca3bf32e
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-parent/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-parent/4.1.6.Final/BUILD
new file mode 100644
index 0000000..d940f30
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-parent/4.1.6.Final/BUILD
@@ -0,0 +1,9 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/org/sonatype/oss/oss-parent/9:pom",
+    source = "netty-parent-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-parent/4.1.6.Final/netty-parent-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-parent/4.1.6.Final/netty-parent-4.1.6.Final.pom
new file mode 100644
index 0000000..1d99345
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-parent/4.1.6.Final/netty-parent-4.1.6.Final.pom
@@ -0,0 +1,1282 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2012 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.sonatype.oss</groupId>
+    <artifactId>oss-parent</artifactId>
+    <version>9</version>
+  </parent>
+
+  <groupId>io.netty</groupId>
+  <artifactId>netty-parent</artifactId>
+  <packaging>pom</packaging>
+  <version>4.1.6.Final</version>
+
+  <name>Netty</name>
+  <url>http://netty.io/</url>
+  <description>
+    Netty is an asynchronous event-driven network application framework for
+    rapid development of maintainable high performance protocol servers and
+    clients.
+  </description>
+
+  <organization>
+    <name>The Netty Project</name>
+    <url>http://netty.io/</url>
+  </organization>
+
+  <licenses>
+    <license>
+      <name>Apache License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
+    </license>
+  </licenses>
+  <inceptionYear>2008</inceptionYear>
+
+  <scm>
+    <url>https://github.com/netty/netty</url>
+    <connection>scm:git:git://github.com/netty/netty.git</connection>
+    <developerConnection>scm:git:ssh://git@github.com/netty/netty.git</developerConnection>
+    <tag>netty-4.1.6.Final</tag>
+  </scm>
+
+  <developers>
+    <developer>
+      <id>netty.io</id>
+      <name>The Netty Project Contributors</name>
+      <email>netty@googlegroups.com</email>
+      <url>http://netty.io/</url>
+      <organization>The Netty Project</organization>
+      <organizationUrl>http://netty.io/</organizationUrl>
+    </developer>
+  </developers>
+
+  <profiles>
+    <profile>
+      <id>leak</id>
+      <properties>
+        <argLine.leak>-Dio.netty.leakDetectionLevel=paranoid -Dio.netty.leakDetection.maxRecords=32</argLine.leak>
+      </properties>
+    </profile>
+    <profile>
+      <id>noUnsafe</id>
+      <properties>
+        <argLine.noUnsafe>-Dio.netty.noUnsafe</argLine.noUnsafe>
+      </properties>
+    </profile>
+    <profile>
+      <id>coverage</id>
+      <properties>
+        <argLine.coverage>${jacoco.argLine}</argLine.coverage>
+      </properties>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.jacoco</groupId>
+            <artifactId>jacoco-maven-plugin</artifactId>
+            <version>0.7.7.201606060606</version>
+            <executions>
+              <execution>
+                <id>jacoco-prepare-agent</id>
+                <goals>
+                  <goal>prepare-agent</goal>
+                </goals>
+                <configuration>
+                  <propertyName>jacoco.argLine</propertyName>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>jdk8</id>
+      <activation>
+        <jdk>[1.8,)</jdk>
+      </activation>
+      <properties>
+        <!-- Our Javadoc has poor enough quality to fail the build thanks to JDK8 javadoc which got more strict. -->
+        <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
+      </properties>
+    </profile>
+    <profile>
+      <id>linux</id>
+      <activation>
+        <os>
+          <family>linux</family>
+        </os>
+      </activation>
+      <modules>
+        <module>transport-native-epoll</module>
+      </modules>
+    </profile>
+    <!--
+      Netty must be released from RHEL 6.7 x86_64 or compatible so that:
+
+        1) we ship x86_64 version of epoll transport officially, and
+        2) we ensure the ABI compatibility with older GLIBC versions.
+
+           The shared library built on a distribution with newer GLIBC
+           will not run on older distributions.
+    -->
+    <profile>
+      <id>restricted-release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-enforcer-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>enforce-release-environment</id>
+                <goals>
+                  <goal>enforce</goal>
+                </goals>
+                <configuration>
+                  <rules>
+                    <requireJavaVersion>
+                      <!-- Enforce JDK 1.7 (and not 1.8+) for compilation. -->
+                      <!-- See: https://github.com/netty/netty/issues/3548 -->
+                      <version>[1.7.0, 1.8.0)</version>
+                    </requireJavaVersion>
+                    <requireProperty>
+                      <regexMessage>
+                        Release process must be performed on linux-x86_64.
+                      </regexMessage>
+                      <property>os.detected.classifier</property>
+                      <regex>^linux-x86_64-fedora$</regex>
+                    </requireProperty>
+                    <requireFilesContent>
+                      <message>
+                        Release process must be performed on RHEL 6.7 or its derivatives.
+                      </message>
+                      <files>
+                        <file>/etc/redhat-release</file>
+                      </files>
+                      <content>release 6.7</content>
+                    </requireFilesContent>
+                  </rules>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <!--
+      This profile exists because either ALPN or NPN can exits on the class path at once, but not both.
+      The JDK version is typically used to distinguish which should be used but there is some overlap
+      where both could be used.  ALPN is the default and this profile is enabled with a -Dforcenpn=true arugument
+      -->
+      <id>forcenpn</id>
+      <activation>
+        <property>
+          <name>forcenpn</name>
+          <value>true</value>
+        </property>
+      </activation>
+      <properties>
+        <jetty.alpnAgent.option>forceNpn=true</jetty.alpnAgent.option>
+      </properties>
+    </profile>
+  </profiles>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <netty.build.version>22</netty.build.version>
+    <jboss.marshalling.version>1.4.11.Final</jboss.marshalling.version>
+    <jetty.alpnAgent.version>2.0.4</jetty.alpnAgent.version>
+    <jetty.alpnAgent.path>"${settings.localRepository}"/org/mortbay/jetty/alpn/jetty-alpn-agent/${jetty.alpnAgent.version}/jetty-alpn-agent-${jetty.alpnAgent.version}.jar</jetty.alpnAgent.path>
+    <argLine.common>
+      -server
+      -dsa -da -ea:io.netty...
+      -XX:+AggressiveOpts
+      -XX:+TieredCompilation
+      -XX:+UseBiasedLocking
+      -XX:+UseFastAccessorMethods
+      -XX:+OptimizeStringConcat
+      -XX:+HeapDumpOnOutOfMemoryError
+    </argLine.common>
+    <!-- Default to ALPN. See forcenpn profile to force NPN -->
+    <argLine.alpnAgent>-javaagent:${jetty.alpnAgent.path}=${jetty.alpnAgent.option}</argLine.alpnAgent>
+    <argLine.leak>-D_</argLine.leak> <!-- Overridden when 'leak' profile is active -->
+    <argLine.noUnsafe>-D_</argLine.noUnsafe> <!-- Overridden when 'noUnsafe' profile is active -->
+    <argLine.coverage>-D_</argLine.coverage> <!-- Overridden when 'coverage' profile is active -->
+    <!-- Configure the os-maven-plugin extension to expand the classifier on                  -->
+    <!-- Fedora-"like" systems. This is currently only used for the netty-tcnative dependency -->
+    <os.detection.classifierWithLikes>fedora</os.detection.classifierWithLikes>
+    <tcnative.artifactId>netty-tcnative</tcnative.artifactId>
+    <tcnative.version>1.1.33.Fork23</tcnative.version>
+    <tcnative.classifier>${os.detected.classifier}</tcnative.classifier>
+    <epoll.classifier>${os.detected.name}-${os.detected.arch}</epoll.classifier>
+    <logging.config>${project.basedir}/../common/src/test/resources/logback-test.xml</logging.config>
+    <logging.logLevel>debug</logging.logLevel>
+    <log4j2.version>2.6.2</log4j2.version>
+  </properties>
+
+  <modules>
+    <module>common</module>
+    <module>buffer</module>
+    <module>codec</module>
+    <module>codec-dns</module>
+    <module>codec-haproxy</module>
+    <module>codec-http</module>
+    <module>codec-http2</module>
+    <module>codec-memcache</module>
+    <module>codec-mqtt</module>
+    <module>codec-redis</module>
+    <module>codec-smtp</module>
+    <module>codec-socks</module>
+    <module>codec-stomp</module>
+    <module>codec-xml</module>
+    <module>resolver</module>
+    <module>resolver-dns</module>
+    <module>transport</module>
+    <module>transport-rxtx</module>
+    <module>transport-sctp</module>
+    <module>transport-udt</module>
+    <module>handler</module>
+    <module>handler-proxy</module>
+    <module>example</module>
+    <module>testsuite</module>
+    <module>testsuite-osgi</module>
+    <module>microbench</module>
+    <module>all</module>
+    <module>tarball</module>
+  </modules>
+
+  <dependencyManagement>
+    <dependencies>
+      <!-- Byte code generator - completely optional -->
+      <dependency>
+        <groupId>org.javassist</groupId>
+        <artifactId>javassist</artifactId>
+        <version>3.20.0-GA</version>
+        <scope>compile</scope>
+        <optional>true</optional>
+      </dependency>
+
+      <!-- JBoss Marshalling - completely optional -->
+      <dependency>
+        <groupId>org.jboss.marshalling</groupId>
+        <artifactId>jboss-marshalling</artifactId>
+        <version>${jboss.marshalling.version}</version>
+        <scope>compile</scope>
+        <optional>true</optional>
+      </dependency>
+
+      <!-- SPDY and HTTP/2 - completely optional -->
+      <dependency>
+        <groupId>org.eclipse.jetty.npn</groupId>
+        <artifactId>npn-api</artifactId>
+        <version>1.1.1.v20141010</version>
+        <scope>provided</scope> <!-- Provided by npn-boot -->
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.jetty.alpn</groupId>
+        <artifactId>alpn-api</artifactId>
+        <version>1.1.2.v20150522</version>
+        <scope>provided</scope> <!-- Provided by alpn-boot -->
+      </dependency>
+
+      <!-- Google Protocol Buffers - completely optional -->
+      <dependency>
+        <groupId>com.google.protobuf</groupId>
+        <artifactId>protobuf-java</artifactId>
+        <version>2.6.1</version>
+      </dependency>
+      <dependency>
+        <groupId>com.google.protobuf.nano</groupId>
+        <artifactId>protobuf-javanano</artifactId>
+        <version>3.0.0-alpha-5</version>
+      </dependency>
+
+      <!-- Our own Tomcat Native fork - completely optional, used for acclerating SSL with OpenSSL. -->
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>${tcnative.artifactId}</artifactId>
+        <version>${tcnative.version}</version>
+        <classifier>${tcnative.classifier}</classifier>
+        <scope>compile</scope>
+        <optional>true</optional>
+      </dependency>
+
+      <!--
+        Bouncy Castle - completely optional, only needed when:
+        - you generate a temporary self-signed certificate using SelfSignedCertificate, and
+        - you don't use the JDK which doesn't provide sun.security.x509 package.
+      -->
+      <dependency>
+        <groupId>org.bouncycastle</groupId>
+        <artifactId>bcpkix-jdk15on</artifactId>
+        <version>1.54</version>
+        <scope>compile</scope>
+        <optional>true</optional>
+      </dependency>
+
+      <dependency>
+        <groupId>com.fasterxml</groupId>
+        <artifactId>aalto-xml</artifactId>
+        <version>1.0.0</version>
+      </dependency>
+
+      <dependency>
+        <groupId>com.jcraft</groupId>
+        <artifactId>jzlib</artifactId>
+        <version>1.1.3</version>
+      </dependency>
+      <dependency>
+        <groupId>com.ning</groupId>
+        <artifactId>compress-lzf</artifactId>
+        <version>1.0.3</version>
+      </dependency>
+      <dependency>
+        <groupId>net.jpountz.lz4</groupId>
+        <artifactId>lz4</artifactId>
+        <version>1.3.0</version>
+      </dependency>
+      <dependency>
+        <groupId>com.github.jponge</groupId>
+        <artifactId>lzma-java</artifactId>
+        <version>1.3</version>
+      </dependency>
+
+      <!-- Java concurrency tools for the JVM -->
+      <dependency>
+        <groupId>org.jctools</groupId>
+        <artifactId>jctools-core</artifactId>
+        <version>1.2.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.rxtx</groupId>
+        <artifactId>rxtx</artifactId>
+        <version>2.1.7</version>
+      </dependency>
+
+      <dependency>
+        <groupId>com.barchart.udt</groupId>
+        <artifactId>barchart-udt-bundle</artifactId>
+        <version>2.3.0</version>
+      </dependency>
+
+      <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>servlet-api</artifactId>
+        <version>2.5</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-api</artifactId>
+        <version>1.7.21</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>1.2</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-api</artifactId>
+        <version>${log4j2.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+        <version>1.2.17</version>
+        <exclusions>
+          <exclusion>
+            <artifactId>mail</artifactId>
+            <groupId>javax.mail</groupId>
+          </exclusion>
+          <exclusion>
+            <artifactId>jms</artifactId>
+            <groupId>javax.jms</groupId>
+          </exclusion>
+          <exclusion>
+            <artifactId>jmxtools</artifactId>
+            <groupId>com.sun.jdmk</groupId>
+          </exclusion>
+          <exclusion>
+            <artifactId>jmxri</artifactId>
+            <groupId>com.sun.jmx</groupId>
+          </exclusion>
+        </exclusions>
+        <optional>true</optional>
+      </dependency>
+
+      <!-- Metrics providers -->
+      <dependency>
+        <groupId>com.yammer.metrics</groupId>
+        <artifactId>metrics-core</artifactId>
+        <version>2.2.0</version>
+      </dependency>
+
+      <!-- Common test dependencies -->
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>4.12</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <artifactId>netty-build</artifactId>
+        <version>${netty.build.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.hamcrest</groupId>
+        <artifactId>hamcrest-library</artifactId>
+        <version>1.3</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.easymock</groupId>
+        <artifactId>easymock</artifactId>
+        <version>3.4</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.easymock</groupId>
+        <artifactId>easymockclassextension</artifactId>
+        <version>3.2</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.jmock</groupId>
+        <artifactId>jmock-junit4</artifactId>
+        <version>2.8.2</version>
+        <scope>test</scope>
+        <exclusions>
+          <exclusion>
+            <groupId>junit</groupId>
+            <artifactId>junit-dep</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+      <dependency>
+        <groupId>org.mockito</groupId>
+        <artifactId>mockito-core</artifactId>
+        <version>1.10.19</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>ch.qos.logback</groupId>
+        <artifactId>logback-classic</artifactId>
+        <version>1.1.7</version>
+        <scope>test</scope>
+      </dependency>
+
+      <!-- Test dependencies for jboss marshalling encoder/decoder -->
+      <dependency>
+        <groupId>org.jboss.marshalling</groupId>
+        <artifactId>jboss-marshalling-serial</artifactId>
+        <version>${jboss.marshalling.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.marshalling</groupId>
+        <artifactId>jboss-marshalling-river</artifactId>
+        <version>${jboss.marshalling.version}</version>
+        <scope>test</scope>
+      </dependency>
+
+      <!-- Test dependencies for microbench -->
+      <dependency>
+        <groupId>com.google.caliper</groupId>
+        <artifactId>caliper</artifactId>
+        <version>0.5-rc1</version>
+        <scope>test</scope>
+      </dependency>
+
+      <!-- Test dependency for Bzip2 compression codec -->
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-compress</artifactId>
+        <version>1.12</version>
+        <scope>test</scope>
+      </dependency>
+
+      <!-- Test dependency used by http/2 hpack -->
+      <dependency>
+        <groupId>com.google.code.gson</groupId>
+        <artifactId>gson</artifactId>
+        <version>2.7</version>
+        <scope>test</scope>
+      </dependency>
+
+      <!-- Test suite dependency for generating a compressed heap dump file -->
+      <dependency>
+        <groupId>org.tukaani</groupId>
+        <artifactId>xz</artifactId>
+        <version>1.5</version>
+      </dependency>
+
+      <!-- Test dependency for resolver-dns -->
+      <dependency>
+        <groupId>org.apache.directory.server</groupId>
+        <artifactId>apacheds-protocol-dns</artifactId>
+        <version>1.5.7</version>
+        <scope>test</scope>
+      </dependency>
+
+      <!-- Test dependency for log4j2 tests -->
+      <dependency>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-core</artifactId>
+        <version>${log4j2.version}</version>
+        <scope>test</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <dependencies>
+    <!-- Enable Javassist support for all test runs -->
+    <dependency>
+      <groupId>org.javassist</groupId>
+      <artifactId>javassist</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <!-- Testing frameworks and related dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-build</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-library</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymock</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymockclassextension</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jmock</groupId>
+      <artifactId>jmock-junit4</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <extensions>
+      <extension>
+        <groupId>kr.motd.maven</groupId>
+        <artifactId>os-maven-plugin</artifactId>
+        <version>1.5.0.Final</version>
+      </extension>
+    </extensions>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>enforce-tools</id>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+            <configuration>
+              <rules>
+                <requireJavaVersion>
+                  <!-- Enforce JDK 1.7+ for compilation. -->
+                  <!-- This is needed because of java.util.zip.Deflater and NIO UDP multicast. -->
+                  <version>[1.7.0,)</version>
+                </requireJavaVersion>
+                <requireMavenVersion>
+                  <version>[3.1.1,)</version>
+                </requireMavenVersion>
+                <requireProperty>
+                  <regexMessage>
+                    x86_64 JDK must be used.
+                  </regexMessage>
+                  <property>os.detected.arch</property>
+                  <regex>^x86_64$</regex>
+                </requireProperty>
+              </rules>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.5.1</version>
+        <configuration>
+          <compilerVersion>1.7</compilerVersion>
+          <fork>true</fork>
+          <source>1.6</source>
+          <target>1.6</target>
+          <debug>true</debug>
+          <optimize>true</optimize>
+          <showDeprecation>true</showDeprecation>
+          <showWarnings>true</showWarnings>
+          <compilerArgument>-Xlint:-options</compilerArgument>
+          <!-- XXX: maven-release-plugin complains - MRELEASE-715 -->
+          <!--
+          <compilerArguments>
+            <Xlint:-options />
+            <Xlint:unchecked />
+            <Xlint:deprecation />
+          </compilerArguments>
+          -->
+          <meminitial>256m</meminitial>
+          <maxmem>1024m</maxmem>
+          <excludes>
+            <exclude>**/package-info.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <!-- ensure that only methods available in java 1.6 can
+             be used even when compiling with java 1.7+ -->
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>animal-sniffer-maven-plugin</artifactId>
+        <version>1.11</version>
+        <dependencies>
+          <!-- Upgrade ASM and support Java 8 bytecode -->
+          <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm-all</artifactId>
+            <version>5.1</version>
+          </dependency>
+        </dependencies>
+        <configuration>
+          <signature>
+            <groupId>org.codehaus.mojo.signature</groupId>
+            <artifactId>java16</artifactId>
+            <version>1.1</version>
+          </signature>
+          <ignores>
+            <ignore>sun.misc.Unsafe</ignore>
+            <ignore>sun.misc.Cleaner</ignore>
+            <ignore>sun.nio.ch.DirectBuffer</ignore>
+
+            <ignore>java.util.zip.Deflater</ignore>
+
+            <!-- Used for NIO -->
+            <ignore>java.nio.channels.DatagramChannel</ignore>
+            <ignore>java.nio.channels.MembershipKey</ignore>
+            <ignore>java.nio.channels.ServerSocketChannel</ignore>
+            <ignore>java.nio.channels.SocketChannel</ignore>
+            <ignore>java.net.StandardProtocolFamily</ignore>
+            <ignore>java.nio.channels.spi.SelectorProvider</ignore>
+
+            <!-- Self-signed certificate generation -->
+            <ignore>sun.security.x509.AlgorithmId</ignore>
+            <ignore>sun.security.x509.CertificateAlgorithmId</ignore>
+            <ignore>sun.security.x509.CertificateIssuerName</ignore>
+            <ignore>sun.security.x509.CertificateSerialNumber</ignore>
+            <ignore>sun.security.x509.CertificateSubjectName</ignore>
+            <ignore>sun.security.x509.CertificateValidity</ignore>
+            <ignore>sun.security.x509.CertificateVersion</ignore>
+            <ignore>sun.security.x509.CertificateX509Key</ignore>
+            <ignore>sun.security.x509.X500Name</ignore>
+            <ignore>sun.security.x509.X509CertInfo</ignore>
+            <ignore>sun.security.x509.X509CertImpl</ignore>
+
+            <!-- SSLSession implementation -->
+            <ignore>javax.net.ssl.SSLEngine</ignore>
+            <ignore>javax.net.ssl.X509ExtendedTrustManager</ignore>
+            <ignore>javax.net.ssl.SSLParameters</ignore>
+            <ignore>java.security.AlgorithmConstraints</ignore>
+            <ignore>java.security.cert.CertificateRevokedException</ignore>
+
+            <ignore>java.util.concurrent.ConcurrentLinkedDeque</ignore>
+
+            <!-- Compression -->
+            <ignore>java.util.zip.CRC32</ignore>
+            <ignore>java.util.zip.Adler32</ignore>
+          </ignores>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>process-classes</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <version>2.12.1</version>
+        <executions>
+          <execution>
+            <id>check-style</id>
+            <goals>
+              <goal>check</goal>
+            </goals>
+            <phase>validate</phase>
+            <configuration>
+              <consoleOutput>true</consoleOutput>
+              <logViolationsToConsole>true</logViolationsToConsole>
+              <failsOnError>true</failsOnError>
+              <failOnViolation>true</failOnViolation>
+              <configLocation>io/netty/checkstyle.xml</configLocation>
+              <includeTestSourceDirectory>true</includeTestSourceDirectory>
+            </configuration>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>netty-build</artifactId>
+            <version>${netty.build.version}</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>xml-maven-plugin</artifactId>
+        <version>1.0.1</version>
+        <executions>
+          <execution>
+            <id>check-style</id>
+            <goals>
+              <goal>check-format</goal>
+            </goals>
+            <phase>validate</phase>
+          </execution>
+        </executions>
+        <configuration>
+          <formatFileSets>
+            <formatFileSet>
+              <directory>${project.basedir}</directory>
+              <includes>
+                <include>**/pom.xml</include>
+              </includes>
+            </formatFileSet>
+          </formatFileSets>
+          <useDefaultFormatFileSet>false</useDefaultFormatFileSet>
+        </configuration>
+      </plugin>
+      <!-- Download the npn-boot.jar in advance to add it to the boot classpath. -->
+      <plugin>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>get-jetty-alpn-agent</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>get</goal>
+            </goals>
+            <configuration>
+              <groupId>org.mortbay.jetty.alpn</groupId>
+              <artifactId>jetty-alpn-agent</artifactId>
+              <version>${jetty.alpnAgent.version}</version>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>**/*Test*.java</include>
+            <include>**/*Benchmark*.java</include>
+          </includes>
+          <excludes>
+            <exclude>**/Abstract*</exclude>
+            <exclude>**/TestUtil*</exclude>
+          </excludes>
+          <runOrder>random</runOrder>
+          <systemPropertyVariables>
+            <logback.configurationFile>${logging.config}</logback.configurationFile>
+            <logLevel>${logging.logLevel}</logLevel>
+          </systemPropertyVariables>
+          <argLine>${argLine.common} ${argLine.alpnAgent} ${argLine.leak} ${argLine.coverage} ${argLine.noUnsafe}</argLine>
+          <properties>
+            <property>
+              <name>listener</name>
+              <value>io.netty.build.junit.TimedOutTestsListener</value>
+            </property>
+          </properties>
+        </configuration>
+      </plugin>
+      <!-- always produce osgi bundles -->
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>2.5.4</version>
+        <executions>
+          <execution>
+            <id>generate-manifest</id>
+            <phase>process-classes</phase>
+            <goals>
+              <goal>manifest</goal>
+            </goals>
+            <configuration>
+              <supportedProjectTypes>
+                <supportedProjectType>jar</supportedProjectType>
+                <supportedProjectType>bundle</supportedProjectType>
+              </supportedProjectTypes>
+              <instructions>
+                <Export-Package>${project.groupId}.*</Export-Package>
+                <!-- enforce JVM vendor package as optional -->
+                <Import-Package>sun.misc.*;resolution:=optional,sun.nio.ch;resolution:=optional,sun.security.*;resolution:=optional,org.eclipse.jetty.npn;version="[1,2)";resolution:=optional,org.eclipse.jetty.alpn;version="[1,2)";resolution:=optional,*</Import-Package>
+                <!-- override "internal" private package convention -->
+                <Private-Package>!*</Private-Package>
+              </instructions>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <version>1.10</version>
+        <executions>
+          <execution>
+            <id>parse-version</id>
+            <goals>
+              <goal>parse-version</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <version>3.0.1</version>
+        <!-- Eclipse-related OSGi manifests
+             See https://github.com/netty/netty/issues/3886
+             More information: http://rajakannappan.blogspot.ie/2010/03/automating-eclipse-source-bundle.html -->
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
+              <Bundle-Name>${project.name}</Bundle-Name>
+              <Bundle-SymbolicName>${project.groupId}.${project.artifactId}.source</Bundle-SymbolicName>
+              <Bundle-Vendor>${project.organization.name}</Bundle-Vendor>
+              <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
+              <Eclipse-SourceBundle>${project.groupId}.${project.artifactId};version="${parsedVersion.osgiVersion}";roots:="."</Eclipse-SourceBundle>
+            </manifestEntries>
+          </archive>
+        </configuration>
+
+        <executions>
+          <!--
+            ~ This workaround prevents Maven from executing the 'generate-sources' phase twice.
+            ~ See http://jira.codehaus.org/browse/MSOURCES-13
+            ~ and http://blog.peterlynch.ca/2010/05/maven-how-to-prevent-generate-sources.html
+            -->
+          <execution>
+            <id>attach-sources</id>
+            <phase>invalid</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>attach-sources-no-fork</id>
+            <phase>package</phase>
+            <goals>
+              <goal>jar-no-fork</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.10.4</version>
+        <configuration>
+          <detectOfflineLinks>false</detectOfflineLinks>
+          <breakiterator>true</breakiterator>
+          <version>false</version>
+          <author>false</author>
+          <keywords>true</keywords>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <version>2.8.2</version>
+        <configuration>
+          <retryFailedDeploymentCount>10</retryFailedDeploymentCount>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <!-- Downgrade to 2.4.1 if release fails -->
+        <version>2.5.3</version>
+        <configuration>
+          <useReleaseProfile>false</useReleaseProfile>
+          <arguments>-P restricted-release,sonatype-oss-release,full</arguments>
+          <autoVersionSubmodules>true</autoVersionSubmodules>
+          <allowTimestampedSnapshots>false</allowTimestampedSnapshots>
+          <tagNameFormat>netty-@{project.version}</tagNameFormat>
+        </configuration>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-api</artifactId>
+            <version>1.9.4</version>
+          </dependency>
+          <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-provider-gitexe</artifactId>
+            <version>1.9.4</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+
+      <!-- Ensure to put maven-antrun-plugin at the end of the plugin list
+           so that they are run lastly in the same phase. -->
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <!-- Generate the version properties for all artifacts. -->
+          <execution>
+            <id>write-version-properties</id>
+            <phase>initialize</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <target>
+                <taskdef resource="net/sf/antcontrib/antlib.xml" />
+
+                <!-- Get the information about the latest commit -->
+                <exec executable="git" outputproperty="gitOutput.lastCommit" resultproperty="gitExitCode.lastCommit" failonerror="false" failifexecutionfails="false">
+                  <arg value="log" />
+                  <arg value="-1" />
+                  <arg value="--format=format:%h %H %cd" />
+                  <arg value="--date=iso" />
+                </exec>
+                <propertyregex property="shortCommitHash" input="${gitOutput.lastCommit}" regexp="^([0-9a-f]+) .*$" select="\1" casesensitive="true" defaultValue="0" />
+                <propertyregex property="longCommitHash" input="${gitOutput.lastCommit}" regexp="^[0-9a-f]+ ([0-9a-f]{40}) .*$" select="\1" casesensitive="true" defaultValue="0000000000000000000000000000000000000000" />
+                <propertyregex property="commitDate" input="${gitOutput.lastCommit}" regexp="^[0-9a-f]+ [0-9a-f]{40} (.*)$" select="\1" casesensitive="true" defaultValue="1970-01-01 00:00:00 +0000" />
+
+                <!-- Get the information abount whether the repository is clean or dirty -->
+                <exec executable="git" outputproperty="gitOutput.repoStatus" resultproperty="gitExitCode.repoStatus" failonerror="false" failifexecutionfails="false">
+                  <arg value="status" />
+                  <arg value="--porcelain" />
+                </exec>
+                <if>
+                  <equals arg2="0" arg1="${gitExitCode.repoStatus}" />
+                  <then>
+                    <if>
+                      <equals arg2="" arg1="${gitOutput.repoStatus}" />
+                      <then>
+                        <property name="repoStatus" value="clean" />
+                      </then>
+                      <else>
+                        <property name="repoStatus" value="dirty" />
+                      </else>
+                    </if>
+                  </then>
+                  <else>
+                    <property name="repoStatus" value="unknown" />
+                  </else>
+                </if>
+
+                <!-- Print the obtained commit information. -->
+                <echo>Current commit: ${shortCommitHash} on ${commitDate}</echo>
+
+                <!-- Generate the .properties file. -->
+                <!--
+                <property name="metaInfDir" value="${project.basedir}/src/main/resources/META-INF" />
+                -->
+                <property name="metaInfDir" value="${project.build.outputDirectory}/META-INF" />
+                <property name="versionPropFile" value="${metaInfDir}/${project.groupId}.versions.properties" />
+                <mkdir dir="${metaInfDir}" />
+                <delete file="${versionPropFile}" quiet="true" />
+
+                <propertyfile file="${versionPropFile}" comment="Generated by netty-parent/pom.xml">
+                  <entry key="${project.artifactId}.version" value="${project.version}" />
+                  <entry key="${project.artifactId}.buildDate" type="date" value="now" pattern="yyyy-MM-dd HH:mm:ss Z" />
+                  <entry key="${project.artifactId}.commitDate" value="${commitDate}" />
+                  <entry key="${project.artifactId}.shortCommitHash" value="${shortCommitHash}" />
+                  <entry key="${project.artifactId}.longCommitHash" value="${longCommitHash}" />
+                  <entry key="${project.artifactId}.repoStatus" value="${repoStatus}" />
+                </propertyfile>
+              </target>
+            </configuration>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.ant</groupId>
+            <artifactId>ant</artifactId>
+            <version>1.9.7</version>
+          </dependency>
+          <dependency>
+            <groupId>org.apache.ant</groupId>
+            <artifactId>ant-launcher</artifactId>
+            <version>1.9.7</version>
+          </dependency>
+          <dependency>
+            <groupId>ant-contrib</groupId>
+            <artifactId>ant-contrib</artifactId>
+            <version>1.0b3</version>
+            <exclusions>
+              <exclusion>
+                <groupId>ant</groupId>
+                <artifactId>ant</artifactId>
+              </exclusion>
+            </exclusions>
+          </dependency>
+        </dependencies>
+      </plugin>
+    </plugins>
+
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-enforcer-plugin</artifactId>
+          <version>1.4.1</version>
+          <dependencies>
+            <!-- Provides the 'requireFilesContent' enforcer rule. -->
+            <dependency>
+              <groupId>com.ceilfors.maven.plugin</groupId>
+              <artifactId>enforcer-rules</artifactId>
+              <version>1.2.0</version>
+            </dependency>
+          </dependencies>
+        </plugin>
+        <!-- keep surefire and failsafe in sync -->
+        <plugin>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.19.1</version>
+        </plugin>
+        <!-- keep surefire and failsafe in sync -->
+        <plugin>
+          <artifactId>maven-failsafe-plugin</artifactId>
+          <version>2.19.1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>3.0.0</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>3.0.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.ops4j.pax.exam</groupId>
+          <artifactId>maven-paxexam-plugin</artifactId>
+          <version>1.2.4</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>3.0.2</version>
+          <executions>
+            <execution>
+              <id>default-jar</id>
+              <configuration>
+                <archive>
+                  <manifest>
+                    <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                  </manifest>
+                  <index>true</index>
+                  <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+                </archive>
+              </configuration>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <artifactId>maven-dependency-plugin</artifactId>
+          <version>2.10</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>2.6</version>
+        </plugin>
+        <plugin>
+          <!-- Do NOT upgrade -->
+          <artifactId>maven-jxr-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-antrun-plugin</artifactId>
+          <version>1.8</version>
+          <dependencies>
+            <dependency>
+              <groupId>ant-contrib</groupId>
+              <artifactId>ant-contrib</artifactId>
+              <version>1.0b3</version>
+              <exclusions>
+                <exclusion>
+                  <groupId>ant</groupId>
+                  <artifactId>ant</artifactId>
+                </exclusion>
+              </exclusions>
+            </dependency>
+          </dependencies>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>build-helper-maven-plugin</artifactId>
+          <version>1.10</version>
+        </plugin>
+        <plugin>
+          <groupId>org.fusesource.hawtjni</groupId>
+          <artifactId>maven-hawtjni-plugin</artifactId>
+          <version>1.14</version>
+        </plugin>
+        <plugin>
+          <groupId>kr.motd.maven</groupId>
+          <artifactId>exec-maven-plugin</artifactId>
+          <version>1.0.0.Final</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-shade-plugin</artifactId>
+          <version>2.4.3</version>
+        </plugin>
+
+        <!-- Workaround for the 'M2E plugin execution not covered' problem.
+             See: http://wiki.eclipse.org/M2E_plugin_execution_not_covered -->
+        <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>[1.7,)</versionRange>
+                    <goals>
+                      <goal>run</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore />
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-checkstyle-plugin</artifactId>
+                    <versionRange>[1.0,)</versionRange>
+                    <goals>
+                      <goal>check</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore />
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-enforcer-plugin</artifactId>
+                    <versionRange>[1.0,)</versionRange>
+                    <goals>
+                      <goal>enforce</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore />
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-clean-plugin</artifactId>
+                    <versionRange>[1.0,)</versionRange>
+                    <goals>
+                      <goal>clean</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore />
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.felix</groupId>
+                    <artifactId>maven-bundle-plugin</artifactId>
+                    <versionRange>[2.4,)</versionRange>
+                    <goals>
+                      <goal>manifest</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore />
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.fusesource.hawtjni</groupId>
+                    <artifactId>maven-hawtjni-plugin</artifactId>
+                    <versionRange>[1.10,)</versionRange>
+                    <goals>
+                      <goal>generate</goal>
+                      <goal>build</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore />
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-dependency-plugin</artifactId>
+                    <versionRange>[2.8,)</versionRange>
+                    <goals>
+                      <goal>get</goal>
+                      <goal>copy</goal>
+                      <goal>properties</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore />
+                  </action>
+                </pluginExecution>
+              </pluginExecutions>
+            </lifecycleMappingMetadata>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+</project>
diff --git a/common/m2/repository/io/netty/netty-parent/4.1.6.Final/netty-parent-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-parent/4.1.6.Final/netty-parent-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..06b1cf3
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-parent/4.1.6.Final/netty-parent-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+8761a31cf28a7137dbbae29f382e998880d86bb6
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/BUILD
new file mode 100644
index 0000000..88d3a82
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-resolver-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-resolver-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.jar
new file mode 100644
index 0000000..1a99757
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..67c8474
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+2a1c97445b6aa544cd029faa72abfb3f85e9957e
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.pom
new file mode 100644
index 0000000..286b05f
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.pom
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2014 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-resolver</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Resolver</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+</project>
+
diff --git a/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..e2d8e24
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-resolver/4.1.6.Final/netty-resolver-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+3c2a52ab930243b9d681925af4606ebd16430a80
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-transport/4.1.6.Final/BUILD b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/BUILD
new file mode 100644
index 0000000..915a404
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/BUILD
@@ -0,0 +1,16 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+load("//tools/base/bazel:maven.bzl", "maven_java_import", "maven_pom", "maven_aar")
+
+maven_java_import(
+    name = "jar",
+    jars = ["netty-transport-4.1.6.Final.jar"],
+    pom = ":pom",
+    visibility = ["//visibility:public"],
+)
+
+maven_pom(
+    name = "pom",
+    parent = "//prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.6.Final:pom",
+    source = "netty-transport-4.1.6.Final.pom",
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.jar b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.jar
new file mode 100644
index 0000000..b9610fe
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.jar
Binary files differ
diff --git a/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.jar.sha1 b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.jar.sha1
new file mode 100644
index 0000000..7107502
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.jar.sha1
@@ -0,0 +1 @@
+4cba91ad2711c13a063d480f01edf70aa3f9387d
\ No newline at end of file
diff --git a/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.pom b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.pom
new file mode 100644
index 0000000..b9e481a
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.pom
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2012 The Netty Project
+  ~
+  ~ The Netty Project licenses this file to you 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>io.netty</groupId>
+    <artifactId>netty-parent</artifactId>
+    <version>4.1.6.Final</version>
+  </parent>
+
+  <artifactId>netty-transport</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Netty/Transport</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-buffer</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>netty-resolver</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+</project>
+
diff --git a/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.pom.sha1 b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.pom.sha1
new file mode 100644
index 0000000..d05129a
--- /dev/null
+++ b/common/m2/repository/io/netty/netty-transport/4.1.6.Final/netty-transport-4.1.6.Final.pom.sha1
@@ -0,0 +1 @@
+0ef378151b2366f2a32437f3476582ab3241bfab
\ No newline at end of file