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