Add Square's haha library.

Needed as a dependency of LeakCanary.

GitHub page:
https://github.com/square/haha

Files downloaded from MavenCentral.

Bug: 22357602
Change-Id: I6d2321e7c1b4ac848277c9cd6c382d610997ef7c
diff --git a/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.jar b/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.jar
new file mode 100644
index 0000000..6d7f121
--- /dev/null
+++ b/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.jar
Binary files differ
diff --git a/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.jar.md5 b/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.jar.md5
new file mode 100644
index 0000000..2b58a1e
--- /dev/null
+++ b/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.jar.md5
@@ -0,0 +1 @@
+2d691ae28b098da7910616416569cabb
diff --git a/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.pom b/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.pom
new file mode 100644
index 0000000..68a7174
--- /dev/null
+++ b/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.pom
@@ -0,0 +1,153 @@
+<?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>org.sonatype.oss</groupId>
+    <artifactId>oss-parent</artifactId>
+    <version>7</version>
+  </parent>
+
+  <groupId>com.squareup.haha</groupId>
+  <artifactId>haha</artifactId>
+  <version>1.3</version>
+
+  <name>Headless Android Heap Analyzer</name>
+  <description>Port of Eclipse Memory Analyzer to parse and analyze Android heapdumps</description>
+  <url>https://github.com/square/haha</url>
+  <inceptionYear>2015</inceptionYear>
+
+  <scm>
+    <url>https://github.com/square/haha</url>
+    <connection>scm:git:https://github.com/square/haha.git</connection>
+    <developerConnection>scm:git:git@github.com:square/haha.git</developerConnection>
+    <tag>haha-1.3</tag>
+  </scm>
+
+  <organization>
+    <name>Square, Inc.</name>
+    <url>http://squareup.com</url>
+  </organization>
+
+ <issueManagement>
+    <system>GitHub Issues</system>
+    <url>http://github.com/square/haha/issues</url>
+  </issueManagement>
+
+  <licenses>
+    <license>
+      <name>Eclipse Public License - v 1.0</name>
+      <url>http://www.eclipse.org/org/documents/epl-v10.php</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <name>Pierre-Yves Ricau</name>
+      <email>py@squareup.com</email>
+      <organization>Square, Inc.</organization>
+      <organizationUrl>https://squareup.com</organizationUrl>
+    </developer>
+  </developers>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <java.version>1.6</java.version>
+  </properties>
+
+  <distributionManagement>
+    <snapshotRepository>
+      <id>ossrh</id>
+      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+    </snapshotRepository>
+  </distributionManagement>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.1</version>
+        <configuration>
+          <source>${java.version}</source>
+          <target>${java.version}</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <version>2.5</version>
+	    <configuration>
+	      <autoVersionSubmodules>true</autoVersionSubmodules>
+	      <useReleaseProfile>false</useReleaseProfile>
+	      <releaseProfiles>release</releaseProfiles>
+	      <goals>deploy</goals>
+	    </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.sonatype.plugins</groupId>
+        <artifactId>nexus-staging-maven-plugin</artifactId>
+        <version>1.6.3</version>
+        <extensions>true</extensions>
+        <configuration>
+          <serverId>ossrh</serverId>
+          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
+          <autoReleaseAfterClose>true</autoReleaseAfterClose>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.10.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-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-gpg-plugin</artifactId>
+            <version>1.5</version>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+</project>
diff --git a/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.pom.md5 b/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.pom.md5
new file mode 100644
index 0000000..a53cbaa
--- /dev/null
+++ b/common/m2/repository/com/squareup/haha/haha/1.3/haha-1.3.pom.md5
@@ -0,0 +1 @@
+138770ce4f7c827e53e1ca00e6d8b860
diff --git a/common/m2/repository/com/squareup/haha/haha/maven-metadata.xml b/common/m2/repository/com/squareup/haha/haha/maven-metadata.xml
new file mode 100644
index 0000000..b36c9c7
--- /dev/null
+++ b/common/m2/repository/com/squareup/haha/haha/maven-metadata.xml
@@ -0,0 +1,13 @@
+<metadata modelVersion="1.1.0">
+    <groupId>com.squareup.haha</groupId>
+    <artifactId>haha</artifactId>
+    <versioning>
+        <latest>1.3</latest>
+        <release>1.3</release>
+        <versions>
+            <version>1.2</version>
+            <version>1.3</version>
+        </versions>
+        <lastUpdated>20150615170353</lastUpdated>
+    </versioning>
+</metadata>
\ No newline at end of file
diff --git a/common/m2/repository/com/squareup/haha/haha/maven-metadata.xml.md5 b/common/m2/repository/com/squareup/haha/haha/maven-metadata.xml.md5
new file mode 100644
index 0000000..42d55a4
--- /dev/null
+++ b/common/m2/repository/com/squareup/haha/haha/maven-metadata.xml.md5
@@ -0,0 +1 @@
+64c100a6fcf0a8ca24015d62bdbbb5b6