Add error-prone 2.1.2 prebuilts.

Test: built support library locally
Change-Id: I797304980663dae89e7fbd987a83ee580a5c298b
diff --git a/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar
new file mode 100644
index 0000000..a684e2c
--- /dev/null
+++ b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar
Binary files differ
diff --git a/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar.md5 b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar.md5
new file mode 100644
index 0000000..36b874f
--- /dev/null
+++ b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar.md5
@@ -0,0 +1 @@
+fbc6311fa6912f46ffe4bdb23b39604c
\ No newline at end of file
diff --git a/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar.sha1 b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar.sha1
new file mode 100644
index 0000000..4de3796
--- /dev/null
+++ b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.jar.sha1
@@ -0,0 +1 @@
+5e77666b72c6c5dd583c36148d17fc47f944dfb5
\ No newline at end of file
diff --git a/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom
new file mode 100644
index 0000000..09401e1
--- /dev/null
+++ b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom
@@ -0,0 +1,112 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.github.kevinstern</groupId>
+  <artifactId>software-and-algorithms</artifactId>
+  <version>1.0</version>
+
+  <name>Software and Algorithms</name>
+  <description>Neat algorithm implementations in Java</description>
+  <url>https://www.github.com/KevinStern/software-and-algorithms</url>
+
+  <licenses>
+    <license>
+      <name>MIT License</name>
+      <url>http://www.opensource.org/licenses/mit-license.php</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <name>Kevin L. Stern</name>
+      <url>https://www.github.com/KevinStern</url>
+    </developer>
+  </developers>
+
+  <scm>
+    <connection>scm:git:git://github.com/KevinStern/software-and-algorithms.git</connection>
+    <developerConnection>scm:git:ssh://github.com/KevinStern/software-and-algorithms.git</developerConnection>
+    <url>https://www.github.com/KevinStern/software-and-algorithms</url>
+  </scm>
+
+  <distributionManagement>
+    <snapshotRepository>
+      <id>ossrh</id>
+      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+    </snapshotRepository>
+    <repository>
+      <id>ossrh</id>
+      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+    </repository>
+  </distributionManagement>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.10</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-gpg-plugin</artifactId>
+        <version>1.5</version>
+        <executions>
+          <execution>
+            <id>sign-artifacts</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>sign</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <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>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.4.3</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.8</source>
+          <target>1.8</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom.md5 b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom.md5
new file mode 100644
index 0000000..fb25590
--- /dev/null
+++ b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom.md5
@@ -0,0 +1 @@
+cdbc4085f1b7d33beeab991a3b092f87
\ No newline at end of file
diff --git a/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom.sha1 b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom.sha1
new file mode 100644
index 0000000..7b14cda
--- /dev/null
+++ b/common/m2/repository/com/github/kevinstern/software-and-algorithms/1.0/software-and-algorithms-1.0.pom.sha1
@@ -0,0 +1 @@
+969b642b8abd4e71b70b7b2a6cf4a436dbe4ea5c
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar
new file mode 100644
index 0000000..1037f3c
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar
Binary files differ
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar.md5 b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar.md5
new file mode 100644
index 0000000..fb6b77b
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar.md5
@@ -0,0 +1 @@
+78f35a9b81ecdcc909afb7dee2904efd
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar.sha1 b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar.sha1
new file mode 100644
index 0000000..2cb955e
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.jar.sha1
@@ -0,0 +1 @@
+a72505cd76bc9cb0002ce4004ba36b4252111738
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom
new file mode 100644
index 0000000..17ff213
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2011 Google Inc. All Rights Reserved.
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>com.google.errorprone</groupId>
+    <artifactId>error_prone_parent</artifactId>
+    <version>2.1.2</version>
+  </parent>
+
+  <name>@BugPattern annotation</name>
+  <artifactId>error_prone_annotation</artifactId>
+
+  <licenses>
+    <license>
+      <name>Apache 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+
+  <dependencies>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>${guava.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom.md5 b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom.md5
new file mode 100644
index 0000000..3552ef2
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom.md5
@@ -0,0 +1 @@
+0ed628cfad628304cb749050bb0f22a6
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom.sha1 b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom.sha1
new file mode 100644
index 0000000..298cc7e
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotation/2.1.2/error_prone_annotation-2.1.2.pom.sha1
@@ -0,0 +1 @@
+8b47f5aef232a5014970dfaf42792e6aaafcfac6
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar
new file mode 100644
index 0000000..81325bc
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar
Binary files differ
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar.md5 b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar.md5
new file mode 100644
index 0000000..9d8734c
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar.md5
@@ -0,0 +1 @@
+2cb222f0ca51f8aa3b31e1c127e6bf4e
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar.sha1 b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar.sha1
new file mode 100644
index 0000000..15d2b2a
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar.sha1
@@ -0,0 +1 @@
+6dcc08f90f678ac33e5ef78c3c752b6f59e63e0c
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom
new file mode 100644
index 0000000..9d61e01
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2015 Google Inc. All Rights Reserved.
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>com.google.errorprone</groupId>
+    <artifactId>error_prone_parent</artifactId>
+    <version>2.1.2</version>
+  </parent>
+
+  <name>error-prone annotations</name>
+  <artifactId>error_prone_annotations</artifactId>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <licenses>
+    <license>
+      <name>Apache 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.7</source>
+          <target>1.7</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom.md5 b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom.md5
new file mode 100644
index 0000000..9763fa7
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom.md5
@@ -0,0 +1 @@
+124f8c986b9403544b228a6862549af3
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom.sha1 b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom.sha1
new file mode 100644
index 0000000..458038a
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom.sha1
@@ -0,0 +1 @@
+44f5d3b9781c31822991ff9f948d6cbfb8cdf055
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar
new file mode 100644
index 0000000..de628c7
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar
Binary files differ
diff --git a/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar.md5 b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar.md5
new file mode 100644
index 0000000..7c13b8e
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar.md5
@@ -0,0 +1 @@
+ea985181629d7f5e9096c801fcb71cfc
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar.sha1 b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar.sha1
new file mode 100644
index 0000000..00d8852
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.jar.sha1
@@ -0,0 +1 @@
+dbd0dd7ef76b26509405d9af4647e24a58bf55b6
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom
new file mode 100644
index 0000000..63f27ed
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2011 Google Inc. All Rights Reserved.
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Added this because the JSR 305 dependency wouldn't download from the
+       default repository.  -->
+  <repositories>
+    <repository>
+      <id>alt-repo1</id>
+      <name>repo1.maven.org</name>
+      <url>http://repo1.maven.org</url>
+    </repository>
+  </repositories>
+
+  <parent>
+    <groupId>com.google.errorprone</groupId>
+    <artifactId>error_prone_parent</artifactId>
+    <version>2.1.2</version>
+  </parent>
+
+  <name>error-prone check api</name>
+  <artifactId>error_prone_check_api</artifactId>
+
+  <licenses>
+    <license>
+      <name>Apache 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+
+  <dependencies>
+    <!-- If you add a dependency, please also add a comment with the license
+         as the existing examples do. -->
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>error_prone_annotation</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <!-- BSD New -->
+      <groupId>com.google.code.findbugs</groupId>
+      <artifactId>jsr305</artifactId>
+      <version>3.0.0</version>
+    </dependency>
+    <dependency>
+      <!-- GPLv2 with Classpath Exception -->
+      <groupId>org.checkerframework</groupId>
+      <artifactId>dataflow</artifactId>
+      <version>2.1.14</version>
+    </dependency>
+    <dependency>
+      <!-- GPLv2 with Classpath Exception -->
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>javac</artifactId>
+      <version>${javac.version}</version>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.googlecode.java-diff-utils</groupId>
+      <artifactId>diffutils</artifactId>
+      <version>1.3.0</version>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.auto.value</groupId>
+      <artifactId>auto-value</artifactId>
+      <version>${autovalue.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>error_prone_annotations</artifactId>
+      <version>${project.version}</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <!-- Eclipse Public License 1.0 -->
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- BSD New (3 clause) -->
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-core</artifactId>
+      <version>1.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.truth</groupId>
+      <artifactId>truth</artifactId>
+      <version>${truth.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.truth.extensions</groupId>
+      <artifactId>truth-java8-extension</artifactId>
+      <version>${truth.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- MIT -->
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>2.0.3-beta</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava-testlib</artifactId>
+      <version>${guava.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- MIT -->
+      <groupId>com.github.kevinstern</groupId>
+      <artifactId>software-and-algorithms</artifactId>
+      <version>1.0</version>
+    </dependency>
+  </dependencies>
+
+</project>
diff --git a/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom.md5 b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom.md5
new file mode 100644
index 0000000..abb3a05
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom.md5
@@ -0,0 +1 @@
+31a36c45a771b746ac541e446f79fa38
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom.sha1 b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom.sha1
new file mode 100644
index 0000000..5ddc473
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_check_api/2.1.2/error_prone_check_api-2.1.2.pom.sha1
@@ -0,0 +1 @@
+17b140ad45d64ec6776955a15874d17c767d5363
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar
new file mode 100644
index 0000000..4a136fd
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar
Binary files differ
diff --git a/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar.md5 b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar.md5
new file mode 100644
index 0000000..3d0542b
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar.md5
@@ -0,0 +1 @@
+e060c4c24dcf2aaa68952b1ad77239ed
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar.sha1 b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar.sha1
new file mode 100644
index 0000000..45b1341
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.jar.sha1
@@ -0,0 +1 @@
+d65d52a299ff35aa7ef5a91ccd53b05a497d0b29
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom
new file mode 100644
index 0000000..e7792f3
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom
@@ -0,0 +1,351 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2011 Google Inc. All Rights Reserved.
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Added this because the JSR 305 dependency wouldn't download from the
+       default repository.  -->
+  <repositories>
+    <repository>
+      <id>alt-repo1</id>
+      <name>repo1.maven.org</name>
+      <url>http://repo1.maven.org</url>
+    </repository>
+  </repositories>
+
+  <parent>
+    <groupId>com.google.errorprone</groupId>
+    <artifactId>error_prone_parent</artifactId>
+    <version>2.1.2</version>
+  </parent>
+
+  <name>error-prone library</name>
+  <artifactId>error_prone_core</artifactId>
+
+  <licenses>
+    <license>
+      <name>Apache 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+
+  <dependencies>
+    <!-- If you add a dependency, please also add a comment with the license
+         as the existing examples do.
+
+         If the license is compatible with ours (e.g. Apache 2.0, BSD, and MIT
+         are; assume anything else is not), please add the dependency to
+         the Maven shade includes section below, so it will be packaged with
+         the error-prone JAR file that we distribute.  -->
+
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>error_prone_annotation</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>error_prone_check_api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>error_prone_test_helpers</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.github.stephenc.jcip</groupId>
+      <artifactId>jcip-annotations</artifactId>
+      <version>1.0-1</version>
+    </dependency>
+    <dependency>
+      <!-- MIT -->
+      <groupId>org.pcollections</groupId>
+      <artifactId>pcollections</artifactId>
+      <version>2.1.2</version>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>${guava.version}</version>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.auto</groupId>
+      <artifactId>auto-common</artifactId>
+      <version>0.7</version>
+    </dependency>
+    <dependency>
+      <!-- LGPL -->
+      <groupId>com.google.code.findbugs</groupId>
+      <artifactId>jFormatString</artifactId>
+      <version>3.0.0</version>
+    </dependency>
+    <dependency>
+      <!-- BSD New -->
+      <groupId>com.google.code.findbugs</groupId>
+      <artifactId>jsr305</artifactId>
+      <version>3.0.0</version>
+    </dependency>
+    <dependency>
+      <!-- GPLv2 with Classpath Exception -->
+      <groupId>org.checkerframework</groupId>
+      <artifactId>dataflow</artifactId>
+      <version>2.1.14</version>
+    </dependency>
+    <dependency>
+      <!-- GPLv2 with Classpath Exception -->
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>javac</artifactId>
+      <version>${javac.version}</version>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.auto.value</groupId>
+      <artifactId>auto-value</artifactId>
+      <version>${autovalue.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>error_prone_annotations</artifactId>
+      <version>${project.version}</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <!-- Eclipse Public License 1.0 -->
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- BSD New (3 clause) -->
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-core</artifactId>
+      <version>1.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- BSD New (3 clause) -->
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-library</artifactId>
+      <version>1.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.truth</groupId>
+      <artifactId>truth</artifactId>
+      <version>${truth.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.inject</groupId>
+      <artifactId>guice</artifactId>
+      <version>4.0-beta5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.inject.extensions</groupId>
+      <artifactId>guice-assistedinject</artifactId>
+      <version>4.0-beta5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.inject.extensions</groupId>
+      <artifactId>guice-servlet</artifactId>
+      <version>4.0-beta5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.gwt.inject</groupId>
+      <artifactId>gin</artifactId>
+      <version>2.1.2</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- MIT -->
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>2.0.3-beta</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- BSD -->
+      <groupId>org.jmock</groupId>
+      <artifactId>jmock</artifactId>
+      <version>2.8.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- BSD -->
+      <groupId>org.jmock</groupId>
+      <artifactId>jmock-junit4</artifactId>
+      <version>2.8.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+      <version>3.0.0-beta-4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.dagger</groupId>
+      <artifactId>dagger</artifactId>
+      <version>2.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.dagger</groupId>
+      <artifactId>dagger-producers</artifactId>
+      <version>2.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.auto.factory</groupId>
+      <artifactId>auto-factory</artifactId>
+      <version>1.0-beta3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava-testlib</artifactId>
+      <version>${guava.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.testing.compile</groupId>
+      <artifactId>compile-testing</artifactId>
+      <version>0.9</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- ICU License -->
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+      <version>56.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>com.google.auto.service</groupId>
+      <artifactId>auto-service</artifactId>
+      <version>1.0-rc2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>io.netty</groupId>
+      <artifactId>netty-all</artifactId>
+      <version>4.1.12.Final</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <!-- Apache 2.0 -->
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+      <version>2.9.4</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <!-- Include the @BugPattern annotation in the main distribution
+           so users have only one jar to add to their classpath. -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <shadedArtifactAttached>true</shadedArtifactAttached>
+              <shadedClassifierName>with-dependencies</shadedClassifierName>
+              <createDependencyReducedPom>false</createDependencyReducedPom>
+              <artifactSet>
+                <!-- Include only dependencies with compatible licenses.
+                     Apache, BSD, and MIT are OK; others are not. -->
+                <includes>
+                  <include>com.google.errorprone:error_prone_annotation</include>
+                  <include>com.google.errorprone:error_prone_check_api</include>
+                  <include>com.github.stephenc.jcip:jcip-annotations</include>
+                  <include>org.pcollections:pcollections</include>
+                  <include>com.google.guava:guava</include>
+                  <include>com.google.auto:auto-common</include>
+                  <include>com.google.code.findbugs:jsr305</include>
+                </includes>
+              </artifactSet>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.19.1</version>
+        <configuration>
+          <!-- set heap size to work around http://github.com/travis-ci/travis-ci/issues/3396 -->
+          <!-- put javac.jar on bootclasspath when executing tests -->
+          <argLine>-Xmx1024m -Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar</argLine>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <!-- run annotation processor -->
+    <profile>
+      <id>run-annotation-processor</id>
+      <dependencies>
+        <dependency>
+          <groupId>com.google.errorprone</groupId>
+          <artifactId>error_prone_docgen_processor</artifactId>
+          <version>${project.version}</version>
+        </dependency>
+        <dependency>
+          <groupId>com.google.guava</groupId>
+          <artifactId>guava</artifactId>
+          <version>${guava.version}</version>
+        </dependency>
+      </dependencies>
+    </profile>
+  </profiles>
+</project>
diff --git a/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom.md5 b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom.md5
new file mode 100644
index 0000000..2096fc8
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom.md5
@@ -0,0 +1 @@
+930fd705c1cde982d5adb1ed47796ba0
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom.sha1 b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom.sha1
new file mode 100644
index 0000000..6428321
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_core/2.1.2/error_prone_core-2.1.2.pom.sha1
@@ -0,0 +1 @@
+69fb87d899721728149e6ca58773389cbbe4cb33
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom b/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom
new file mode 100644
index 0000000..3ce7f85
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom
@@ -0,0 +1,162 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2011 Google Inc. All Rights Reserved.
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.sonatype.oss</groupId>
+    <artifactId>oss-parent</artifactId>
+    <version>7</version>
+  </parent>
+
+  <name>Maven parent POM</name>
+  <groupId>com.google.errorprone</groupId>
+  <artifactId>error_prone_parent</artifactId>
+  <version>2.1.2</version>
+  <packaging>pom</packaging>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <guava.version>22.0</guava.version>
+    <truth.version>0.36</truth.version>
+    <javac.version>9-dev-r4023-3</javac.version>
+    <autovalue.version>1.3</autovalue.version>
+    <junit.version>4.13-SNAPSHOT</junit.version>
+  </properties>
+
+  <modules>
+    <module>check_api</module>
+    <module>test_helpers</module>
+    <module>core</module>
+    <module>annotation</module>
+    <module>annotations</module>
+    <module>docgen</module>
+    <module>docgen_processor</module>
+    <module>ant</module>
+    <module>refaster</module>
+  </modules>
+
+  <scm>
+    <connection>scm:git:https://github.com/google/error-prone.git</connection>
+    <developerConnection>scm:git:git@github.com:google/error-prone.git</developerConnection>
+    <url>https://github.com/google/error-prone</url>
+  </scm>
+
+  <licenses>
+    <license>
+      <name>Apache 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <includes>
+          <include>**/*.properties</include>
+        </includes>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <includes>
+          <include>**/testdata/**</include>
+        </includes>
+      </testResource>
+    </testResources>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-shade-plugin</artifactId>
+          <version>2.1</version>
+          <configuration>
+            <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>2.5</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.9.1</version>
+        <configuration>
+          <notimestamp>true</notimestamp>
+        </configuration>
+        <dependencies>
+          <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-io</artifactId>
+            <version>2.0.9</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.1</version>
+        <configuration>
+          <source>1.8</source>
+          <target>1.8</target>
+          <testExcludes>
+            <exclude>**/testdata/**</exclude>
+          </testExcludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <version>2.1.2</version>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <phase>package</phase>
+            <goals>
+              <goal>jar-no-fork</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>3.3</version>
+        <executions>
+          <execution>
+            <id>attach-descriptor</id>
+            <goals>
+              <goal>attach-descriptor</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.9</version>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom.md5 b/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom.md5
new file mode 100644
index 0000000..ff6bd2d
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom.md5
@@ -0,0 +1 @@
+937673657b27914d577e3f6ff852794b
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom.sha1 b/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom.sha1
new file mode 100644
index 0000000..1ba3339
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom.sha1
@@ -0,0 +1 @@
+ae2dd256d508d2ffc9d77fbec0414ee695973a8a
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar
new file mode 100644
index 0000000..071b9a3
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar
Binary files differ
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar.md5 b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar.md5
new file mode 100644
index 0000000..3256a95
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar.md5
@@ -0,0 +1 @@
+ecf9e22e44ad516e19848772759d3d11
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar.sha1 b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar.sha1
new file mode 100644
index 0000000..b70702d
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3-sources.jar.sha1
@@ -0,0 +1 @@
+4705eccb0ddd5a854c72d49b6e871ccd2b15729d
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar
new file mode 100644
index 0000000..e0407a7
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar
Binary files differ
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar.md5 b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar.md5
new file mode 100644
index 0000000..dc007b3
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar.md5
@@ -0,0 +1 @@
+4385a3b42ff817c338d5ad1368443a0f
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar.sha1 b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar.sha1
new file mode 100644
index 0000000..b7b0391
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.jar.sha1
@@ -0,0 +1 @@
+408c45e1a677c9c8dc4fa6470aefbd960462803d
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom
new file mode 100644
index 0000000..321b6b3
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.sonatype.oss</groupId>
+    <artifactId>oss-parent</artifactId>
+    <version>7</version>
+  </parent>
+
+  <name>Error Prone javac</name>
+  <groupId>com.google.errorprone</groupId>
+  <artifactId>javac</artifactId>
+  <version>9-dev-r4023-3</version>
+  <packaging>jar</packaging>
+
+  <description>A repackaged copy of javac for Error Prone to depend on</description>
+  <url>https://github.com/google/error-prone-javac</url>
+
+  <licenses>
+    <license>
+      <name>GNU General Public License, version 2, with the Classpath Exception</name>
+      <url>http://openjdk.java.net/legal/gplv2+ce.html</url>
+    </license>
+  </licenses>
+
+  <scm>
+    <url>https://github.com/google/error-prone-javac</url>
+    <connection>scm:git:git://github.com/google/error-prone-javac.git</connection>
+    <developerConnection>scm:git:ssh://git@github.com/google/error-prone-javac.git</developerConnection>
+  </scm>
+
+</project>
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom.md5 b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom.md5
new file mode 100644
index 0000000..1f0ccf7
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom.md5
@@ -0,0 +1 @@
+86a160df256c7938953c8d4a2fb27985
\ No newline at end of file
diff --git a/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom.sha1 b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom.sha1
new file mode 100644
index 0000000..825acde
--- /dev/null
+++ b/common/m2/repository/com/google/errorprone/javac/9-dev-r4023-3/javac-9-dev-r4023-3.pom.sha1
@@ -0,0 +1 @@
+3ecc1b81bf1e915b3874547154b9af66d0256278
\ No newline at end of file