merge in nyc-dr1-release history after reset to nyc-dr1-dev
diff --git a/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/BUILD b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/BUILD
new file mode 100644
index 0000000..19326b2
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/BUILD
@@ -0,0 +1,7 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+
+java_import(
+    name = "jar",
+    jars = ["httpclient-4.2.6.jar"],
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.jar b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.jar
new file mode 100644
index 0000000..11331df
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.jar
Binary files differ
diff --git a/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.jar.sha1 b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.jar.sha1
new file mode 100644
index 0000000..e654409
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.jar.sha1
@@ -0,0 +1 @@
+e4ca30a6a3a075053a61c6fc850d2432dc012ba7
\ No newline at end of file
diff --git a/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.pom b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.pom
new file mode 100644
index 0000000..aa80aa8
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.pom
@@ -0,0 +1,169 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF 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.
+   ====================================================================
+
+   This software consists of voluntary contributions made by many
+   individuals on behalf of the Apache Software Foundation.  For more
+   information on the Apache Software Foundation, please see
+   <http://www.apache.org />.
+ -->
+
+<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.apache.httpcomponents</groupId>
+    <artifactId>httpcomponents-client</artifactId>
+    <version>4.2.6</version>
+  </parent>
+  <artifactId>httpclient</artifactId>
+  <name>Apache HttpClient</name>
+  <description>
+   HttpComponents Client
+  </description>
+  <url>http://hc.apache.org/httpcomponents-client</url>
+  <packaging>jar</packaging>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <maven.compile.source>1.5</maven.compile.source>
+    <maven.compile.target>1.5</maven.compile.target>
+    <maven.compile.optimize>true</maven.compile.optimize>
+    <maven.compile.deprecation>true</maven.compile.deprecation>
+  </properties>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>true</filtering>
+        <includes>
+            <include>**/*.properties</include>
+        </includes>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${maven.compile.source}</source>
+          <target>${maven.compile.target}</target>
+          <optimize>${maven.compile.optimize}</optimize>
+          <showDeprecations>${maven.compile.deprecation}</showDeprecations>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+         <version>${hc.javadoc.version}</version>
+        <configuration>
+          <!-- reduce console output. Can override with -Dquiet=false -->
+          <quiet>true</quiet>
+          <source>1.5</source>
+          <links>
+            <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
+            <link>http://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/</link>
+          </links>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>javadoc</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>${hc.project-info.version}</version>
+        <inherited>false</inherited>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>dependencies</report>
+              <report>dependency-info</report>
+              <report>summary</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>${hc.jxr.version}</version>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>${hc.surefire-report.version}</version>
+      </plugin>
+
+    </plugins>
+  </reporting>
+
+</project>
diff --git a/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.pom.sha1 b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.pom.sha1
new file mode 100644
index 0000000..b559b68
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.pom.sha1
@@ -0,0 +1 @@
+fc51b4b649a2f9ab2588e9c1703288479591ade8
\ No newline at end of file
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcomponents-client/4.2.6/httpcomponents-client-4.2.6.pom b/common/m2/repository/org/apache/httpcomponents/httpcomponents-client/4.2.6/httpcomponents-client-4.2.6.pom
new file mode 100644
index 0000000..69db580
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcomponents-client/4.2.6/httpcomponents-client-4.2.6.pom
@@ -0,0 +1,343 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF 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.
+   ====================================================================
+
+   This software consists of voluntary contributions made by many
+   individuals on behalf of the Apache Software Foundation.  For more
+   information on the Apache Software Foundation, please see
+   <http://www.apache.org />.
+ -->
+<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>project</artifactId>
+    <groupId>org.apache.httpcomponents</groupId>
+    <version>7</version>
+    <relativePath>../project/pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>httpcomponents-client</artifactId>
+  <name>HttpComponents Client</name>
+  <version>4.2.6</version>
+  <description>Apache HttpComponents Client is a library of components for building client side HTTP services</description>
+  <url>http://hc.apache.org/httpcomponents-client</url>
+  <inceptionYear>1999</inceptionYear>
+  <packaging>pom</packaging>
+
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+
+  <licenses>
+    <license>
+      <name>Apache License</name>
+      <url>LICENSE.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <issueManagement>
+    <system>Jira</system>
+    <url>http://issues.apache.org/jira/browse/HTTPCLIENT</url>
+  </issueManagement>
+
+  <scm>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.2.6</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.2.6</developerConnection>
+    <url>https://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.2.6</url>
+  </scm>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <httpcore.version>4.2.5</httpcore.version>
+    <commons-logging.version>1.1.1</commons-logging.version>
+    <commons-codec.version>1.6</commons-codec.version>
+    <ehcache.version>2.2.0</ehcache.version>
+    <memcached.version>2.6</memcached.version>
+    <slf4j.version>1.5.11</slf4j.version>
+    <junit.version>4.9</junit.version>
+    <easymock.version>2.5.2</easymock.version>
+    <mockito.version>1.8.5</mockito.version>
+    <api.comparison.version>4.2</api.comparison.version>
+  </properties>
+
+  <repositories>
+    <repository>
+      <id>spy</id>
+      <name>Spy Repository</name>
+      <layout>default</layout>
+      <url>http://files.couchbase.com/maven2/</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.apache.httpcomponents</groupId>
+        <artifactId>httpcore</artifactId>
+        <version>${httpcore.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>${commons-logging.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-codec</groupId>
+        <artifactId>commons-codec</artifactId>
+        <version>${commons-codec.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>net.sf.ehcache</groupId>
+        <artifactId>ehcache-core</artifactId>
+        <version>${ehcache.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-jcl</artifactId>
+        <version>${slf4j.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>spy</groupId>
+        <artifactId>spymemcached</artifactId>
+        <version>${memcached.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>${junit.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.mockito</groupId>
+        <artifactId>mockito-core</artifactId>
+        <version>${mockito.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.easymock</groupId>
+        <artifactId>easymock</artifactId>
+        <version>${easymock.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.easymock</groupId>
+        <artifactId>easymockclassextension</artifactId>
+        <version>${easymock.version}</version>
+        <scope>test</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <modules>
+    <module>httpclient</module>
+    <module>httpmime</module>
+    <module>httpclient-cache</module>
+    <module>fluent-hc</module>
+    <module>httpclient-osgi</module>
+  </modules>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Title>HttpComponents ${project.name}</Specification-Title>
+              <Specification-Version>${project.version}</Specification-Version>
+              <Specification-Vendor>The Apache Software Foundation</Specification-Vendor>
+              <Implementation-Title>HttpComponents ${project.name}</Implementation-Title>
+              <Implementation-Version>${project.version}</Implementation-Version>
+              <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
+              <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+              <url>${project.url}</url>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <archive>
+            <!-- Ensure source jars have full manifest entries (note: defaults aren't suitable) -->
+            <manifestEntries>
+              <Specification-Title>HttpComponents ${project.name}</Specification-Title>
+              <Specification-Version>${project.version}</Specification-Version>
+              <Specification-Vendor>The Apache Software Foundation</Specification-Vendor>
+              <Implementation-Title>HttpComponents ${project.name}</Implementation-Title>
+              <Implementation-Version>${project.version}</Implementation-Version>
+              <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
+              <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+          <executions>
+            <execution>
+              <id>attach-javadocs</id>
+              <goals>
+                <goal>jar</goal>
+              </goals>
+            </execution>
+          </executions>        
+        <configuration>
+          <!-- reduce console output. Can override with -Dquiet=false -->
+          <quiet>true</quiet>
+          <source>1.5</source>
+          <links>
+            <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
+            <link>http://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/</link>
+          </links>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>com.agilejava.docbkx</groupId>
+        <artifactId>docbkx-maven-plugin</artifactId>
+        <dependencies>
+          <dependency>
+            <groupId>org.docbook</groupId>
+            <artifactId>docbook-xml</artifactId>
+            <version>4.4</version>
+            <scope>runtime</scope>
+          </dependency>
+        </dependencies>
+        <executions>
+          <execution>
+            <id>tutorial-site</id>
+            <goals>
+              <goal>generate-html</goal>
+              <goal>generate-pdf</goal>
+            </goals>
+            <phase>pre-site</phase>
+          </execution>
+        </executions>        
+        <configuration>
+          <includes>index.xml</includes>
+          <chunkedOutput>true</chunkedOutput>
+          <xincludeSupported>true</xincludeSupported>
+          <foCustomization>src/docbkx/resources/xsl/fopdf.xsl</foCustomization>
+          <htmlCustomization>src/docbkx/resources/xsl/html_chunk.xsl</htmlCustomization>
+          <htmlStylesheet>css/hc-tutorial.css</htmlStylesheet>
+          <entities>
+            <entity>
+              <name>version</name>
+              <value>${project.version}</value>
+            </entity>
+          </entities>
+          <postProcess>
+            <copy todir="target/site/tutorial/html" failonerror="false">
+              <fileset dir="target/docbkx/html/index">
+                <include name="**/*.html" />
+              </fileset>
+            </copy>
+            <copy todir="target/site/tutorial/html" failonerror="false">
+              <fileset dir="src/docbkx/resources">
+                <include name="**/*.css" />
+                <include name="**/*.png" />
+                <include name="**/*.gif" />
+                <include name="**/*.jpg" />
+              </fileset>
+            </copy>
+            <copy file="target/docbkx/pdf/index.pdf" tofile="target/site/tutorial/pdf/httpclient-tutorial.pdf" failonerror="false" />
+          </postProcess>
+        </configuration>
+      </plugin>
+        <plugin>
+          <artifactId>maven-resources-plugin</artifactId>
+          <executions>
+            <execution>
+              <id>copy-resources</id>
+              <phase>pre-site</phase>
+              <goals>
+                <goal>copy-resources</goal>
+              </goals>
+              <configuration>
+                <outputDirectory>${basedir}/target/site/examples</outputDirectory>
+                <resources>
+                  <resource>
+                    <directory>src/examples</directory>
+                    <filtering>false</filtering>
+                  </resource>
+                </resources>
+              </configuration>
+            </execution>
+          </executions>
+        </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>clirr-maven-plugin</artifactId>
+        <configuration>
+          <comparisonVersion>${api.comparison.version}</comparisonVersion>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+
+       <plugin>
+         <artifactId>maven-project-info-reports-plugin</artifactId>
+         <version>${hc.project-info.version}</version>
+         <inherited>false</inherited>
+         <reportSets>
+           <reportSet>
+             <reports>
+               <report>dependency-management</report>
+               <report>issue-tracking</report>
+               <report>license</report>
+               <report>scm</report>
+               <report>summary</report>
+             </reports>
+           </reportSet>
+         </reportSets>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>clirr-maven-plugin</artifactId>
+         <version>${hc.clirr.version}</version>
+        <configuration>
+          <comparisonVersion>${api.comparison.version}</comparisonVersion>
+        </configuration>
+      </plugin>
+
+    </plugins>
+  </reporting>
+
+</project>
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcomponents-client/4.2.6/httpcomponents-client-4.2.6.pom.sha1 b/common/m2/repository/org/apache/httpcomponents/httpcomponents-client/4.2.6/httpcomponents-client-4.2.6.pom.sha1
new file mode 100644
index 0000000..b1b92bb
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcomponents-client/4.2.6/httpcomponents-client-4.2.6.pom.sha1
@@ -0,0 +1 @@
+e40911efc7a573f049475a2beeaf83690bf5ad62
\ No newline at end of file
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcomponents-core/4.2.5/httpcomponents-core-4.2.5.pom b/common/m2/repository/org/apache/httpcomponents/httpcomponents-core/4.2.5/httpcomponents-core-4.2.5.pom
new file mode 100644
index 0000000..1659a4d
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcomponents-core/4.2.5/httpcomponents-core-4.2.5.pom
@@ -0,0 +1,264 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF 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.
+   ====================================================================
+
+   This software consists of voluntary contributions made by many
+   individuals on behalf of the Apache Software Foundation.  For more
+   information on the Apache Software Foundation, please see
+   <http://www.apache.org />.
+ -->
+<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>project</artifactId>
+    <groupId>org.apache.httpcomponents</groupId>
+    <version>7</version>
+    <relativePath>../project/pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>httpcomponents-core</artifactId>
+  <name>Apache HttpComponents Core</name>
+  <version>4.2.5</version>
+  <description>Core components to build HTTP enabled services</description>
+  <url>http://hc.apache.org/httpcomponents-core</url>
+  <inceptionYear>2005</inceptionYear>
+  <packaging>pom</packaging>
+
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+
+  <licenses>
+    <license>
+      <name>Apache License</name>
+      <url>LICENSE.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <issueManagement>
+    <system>Jira</system>
+    <url>http://issues.apache.org/jira/browse/HTTPCORE</url>
+  </issueManagement>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.2.5</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.2.5</developerConnection>
+    <url>http://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.2.5</url>
+  </scm>
+
+  <modules>
+    <module>httpcore</module>
+    <module>httpcore-nio</module>
+    <module>httpcore-osgi</module>
+    <module>httpcore-ab</module>
+  </modules>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <junit.version>4.9</junit.version>
+    <mockito.version>1.8.5</mockito.version>
+    <commons-logging.version>1.1.1</commons-logging.version>
+    <api.comparison.version>4.2</api.comparison.version>
+  </properties>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>${junit.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.mockito</groupId>
+        <artifactId>mockito-core</artifactId>
+        <version>${mockito.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>${commons-logging.version}</version>
+        <scope>test</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Title>HttpComponents ${project.name}</Specification-Title>
+              <Specification-Version>${project.version}</Specification-Version>
+              <Specification-Vendor>The Apache Software Foundation</Specification-Vendor>
+              <Implementation-Title>HttpComponents ${project.name}</Implementation-Title>
+              <Implementation-Version>${project.version}</Implementation-Version>
+              <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
+              <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+              <url>${project.url}</url>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-javadocs</id>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <!-- reduce console output. Can override with -Dquiet=false -->
+          <quiet>true</quiet>
+          <source>1.5</source>
+          <links>
+            <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
+          </links>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>com.agilejava.docbkx</groupId>
+        <artifactId>docbkx-maven-plugin</artifactId>
+        <dependencies>
+          <dependency>
+            <groupId>org.docbook</groupId>
+            <artifactId>docbook-xml</artifactId>
+            <version>4.4</version>
+            <scope>runtime</scope>
+          </dependency>
+        </dependencies>
+        <executions>
+          <execution>
+            <id>tutorial-site</id>
+            <goals>
+              <goal>generate-html</goal>
+              <goal>generate-pdf</goal>
+            </goals>
+            <phase>pre-site</phase>
+          </execution>
+        </executions>        
+        <configuration>
+          <includes>index.xml</includes>
+          <chunkedOutput>true</chunkedOutput>
+          <xincludeSupported>true</xincludeSupported>
+          <foCustomization>src/docbkx/resources/xsl/fopdf.xsl</foCustomization>
+          <htmlCustomization>src/docbkx/resources/xsl/html_chunk.xsl</htmlCustomization>
+          <htmlStylesheet>css/hc-tutorial.css</htmlStylesheet>
+          <entities>
+            <entity>
+              <name>version</name>
+              <value>${project.version}</value>
+            </entity>
+          </entities>
+          <postProcess>
+            <copy todir="target/site/tutorial/html" failonerror="false">
+              <fileset dir="target/docbkx/html/index">
+                <include name="**/*.html" />
+              </fileset>
+            </copy>
+            <copy todir="target/site/tutorial/html" failonerror="false">
+              <fileset dir="src/docbkx/resources">
+                <include name="**/*.css" />
+                <include name="**/*.png" />
+                <include name="**/*.gif" />
+                <include name="**/*.jpg" />
+              </fileset>
+            </copy>
+            <copy file="target/docbkx/pdf/index.pdf" tofile="target/site/tutorial/pdf/httpcore-tutorial.pdf" failonerror="false" />
+          </postProcess>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-resources-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>copy-resources</id>
+            <phase>pre-site</phase>
+            <goals>
+              <goal>copy-resources</goal>
+            </goals>
+            <configuration>
+              <outputDirectory>${basedir}/target/site/examples</outputDirectory>
+              <resources>
+                <resource>
+                  <directory>src/examples</directory>
+                  <filtering>false</filtering>
+                </resource>
+              </resources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+
+       <plugin>
+         <artifactId>maven-project-info-reports-plugin</artifactId>
+         <version>${hc.project-info.version}</version><!-- needed for mvn site -->
+         <reportSets>
+           <reportSet>
+             <reports>
+               <report>dependencies</report>
+               <report>project-team</report>
+               <report>issue-tracking</report>
+               <report>scm</report>
+             </reports>
+           </reportSet>
+         </reportSets>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>clirr-maven-plugin</artifactId>
+        <version>${hc.clirr.version}</version>
+        <configuration>
+          <comparisonVersion>${api.comparison.version}</comparisonVersion>
+        </configuration>
+      </plugin>
+
+    </plugins>
+  </reporting>
+
+</project>
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcomponents-core/4.2.5/httpcomponents-core-4.2.5.pom.sha1 b/common/m2/repository/org/apache/httpcomponents/httpcomponents-core/4.2.5/httpcomponents-core-4.2.5.pom.sha1
new file mode 100644
index 0000000..ed0d32c
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcomponents-core/4.2.5/httpcomponents-core-4.2.5.pom.sha1
@@ -0,0 +1 @@
+1230a8404ed1cb3710ac59734fa2bcad69c166d9
\ No newline at end of file
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/BUILD b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/BUILD
new file mode 100644
index 0000000..091711a
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/BUILD
@@ -0,0 +1,7 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+
+java_import(
+    name = "jar",
+    jars = ["httpcore-4.2.5.jar"],
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.jar b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.jar
new file mode 100644
index 0000000..498144c
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.jar
Binary files differ
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.jar.sha1 b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.jar.sha1
new file mode 100644
index 0000000..c9f3ab2
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.jar.sha1
@@ -0,0 +1 @@
+472f0f5f8dba5d1962cb9d7739feed739a31c30d
\ No newline at end of file
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.pom b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.pom
new file mode 100644
index 0000000..b4a60aa
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.pom
@@ -0,0 +1,140 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF 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.
+   ====================================================================
+
+   This software consists of voluntary contributions made by many
+   individuals on behalf of the Apache Software Foundation.  For more
+   information on the Apache Software Foundation, please see
+   <http://www.apache.org />.
+ -->
+
+<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.apache.httpcomponents</groupId>
+    <artifactId>httpcomponents-core</artifactId>
+    <version>4.2.5</version>
+  </parent>
+  <artifactId>httpcore</artifactId>
+  <name>Apache HttpCore</name>
+  <inceptionYear>2005</inceptionYear>
+  <description>
+   HttpComponents Core (blocking I/O)
+  </description>
+  <url>http://hc.apache.org/httpcomponents-core-ga</url>
+  <packaging>jar</packaging>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <maven.compile.source>1.5</maven.compile.source>
+    <maven.compile.target>1.5</maven.compile.target>
+    <maven.compile.optimize>true</maven.compile.optimize>
+    <maven.compile.deprecation>true</maven.compile.deprecation>
+    <!-- default compiler and surefire plugin settings for "java" profiles -->
+    <httpcore.compiler.fork>false</httpcore.compiler.fork>
+    <httpcore.compiler.compilerVersion />
+    <httpcore.compiler.javac />
+    <httpcore.surefire.java />
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>true</filtering>
+        <includes>
+            <include>**/*.properties</include>
+        </includes>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${maven.compile.source}</source>
+          <target>${maven.compile.target}</target>
+          <optimize>${maven.compile.optimize}</optimize>
+          <showDeprecations>${maven.compile.deprecation}</showDeprecations>
+          <fork>${httpcore.compiler.fork}</fork>
+          <compilerVersion>${httpcore.compiler.compilerVersion}</compilerVersion>
+          <executable>${httpcore.compiler.javac}</executable>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <jvm>${httpcore.surefire.java}</jvm>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>${hc.javadoc.version}</version>
+        <configuration>
+          <!-- reduce console output. Can override with -Dquiet=false -->
+          <quiet>true</quiet>
+          <source>1.5</source>
+          <links>
+            <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
+          </links>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>javadoc</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>${hc.jxr.version}</version>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>${hc.surefire-report.version}</version>
+      </plugin>
+
+    </plugins>
+  </reporting>
+
+</project>
diff --git a/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.pom.sha1 b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.pom.sha1
new file mode 100644
index 0000000..e82a364
--- /dev/null
+++ b/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/httpcore-4.2.5.pom.sha1
@@ -0,0 +1 @@
+cbae058677f9e1abfd9060223eb68224f96a7559
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/BUILD b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/BUILD
new file mode 100644
index 0000000..2c648b6
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/BUILD
@@ -0,0 +1,7 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+
+java_import(
+    name = "jar",
+    jars = ["aether-connector-basic-1.0.2.v20150114.jar"],
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.jar b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.jar
new file mode 100644
index 0000000..b5d7735
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.jar
Binary files differ
diff --git a/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.jar.sha1 b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.jar.sha1
new file mode 100644
index 0000000..f84d81a
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.jar.sha1
@@ -0,0 +1 @@
+d55c03b16efc16f25e1fd9fe0f37878fddbeed68
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.pom b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.pom
new file mode 100644
index 0000000..302e232
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.pom
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ Copyright (c) 2013, 2014 Sonatype, Inc.
+ ~ All rights reserved. This program and the accompanying materials
+ ~ are made available under the terms of the Eclipse Public License v1.0
+ ~ which accompanies this distribution, and is available at
+ ~ http://www.eclipse.org/legal/epl-v10.html
+ ~
+ ~ Contributors:
+ ~    Sonatype, Inc. - initial API and implementation
+-->
+
+<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.eclipse.aether</groupId>
+    <artifactId>aether</artifactId>
+    <version>1.0.2.v20150114</version>
+  </parent>
+
+  <artifactId>aether-connector-basic</artifactId>
+
+  <name>Aether Connector Basic</name>
+  <description>
+      A repository connector implementation for repositories using URI-based layouts.
+  </description>
+
+  <properties>
+    <bundle.symbolicName>org.eclipse.aether.connector.basic</bundle.symbolicName>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-spi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.sonatype.sisu</groupId>
+      <artifactId>sisu-guice</artifactId>
+      <classifier>no_aop</classifier>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-library</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-test-util</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>animal-sniffer-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.eclipse.sisu</groupId>
+        <artifactId>sisu-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.pom.sha1 b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.pom.sha1
new file mode 100644
index 0000000..1271d45
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/aether-connector-basic-1.0.2.v20150114.pom.sha1
@@ -0,0 +1 @@
+cef00fd7321f57ac337bb1a987e4d61556e12fa3
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/BUILD b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/BUILD
new file mode 100644
index 0000000..2c9634a
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/BUILD
@@ -0,0 +1,7 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+
+java_import(
+    name = "jar",
+    jars = ["aether-transport-file-1.0.2.v20150114.jar"],
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.jar b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.jar
new file mode 100644
index 0000000..d37626f
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.jar
Binary files differ
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.jar.sha1 b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.jar.sha1
new file mode 100644
index 0000000..d9e01c1
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.jar.sha1
@@ -0,0 +1 @@
+79ffcce2aa9c525ad5a1d0fc3f9669133c3f9572
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.pom b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.pom
new file mode 100644
index 0000000..3ea5988
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.pom
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ Copyright (c) 2013, 2014 Sonatype, Inc.
+ ~ All rights reserved. This program and the accompanying materials
+ ~ are made available under the terms of the Eclipse Public License v1.0
+ ~ which accompanies this distribution, and is available at
+ ~ http://www.eclipse.org/legal/epl-v10.html
+ ~
+ ~ Contributors:
+ ~    Sonatype, Inc. - initial API and implementation
+-->
+
+<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.eclipse.aether</groupId>
+    <artifactId>aether</artifactId>
+    <version>1.0.2.v20150114</version>
+  </parent>
+
+  <artifactId>aether-transport-file</artifactId>
+
+  <name>Aether Transport File</name>
+  <description>
+      A transport implementation for repositories using file:// URLs.
+  </description>
+
+  <properties>
+    <bundle.symbolicName>org.eclipse.aether.transport.file</bundle.symbolicName>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-spi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.sonatype.sisu</groupId>
+      <artifactId>sisu-guice</artifactId>
+      <classifier>no_aop</classifier>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-library</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-test-util</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>animal-sniffer-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.eclipse.sisu</groupId>
+        <artifactId>sisu-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.pom.sha1 b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.pom.sha1
new file mode 100644
index 0000000..d5ef2be
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/aether-transport-file-1.0.2.v20150114.pom.sha1
@@ -0,0 +1 @@
+3efc60dd5b424f4e6a66cf2f9a258cab0fc48973
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/BUILD b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/BUILD
new file mode 100644
index 0000000..f833a52
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/BUILD
@@ -0,0 +1,7 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+
+java_import(
+    name = "jar",
+    jars = ["aether-transport-http-1.0.2.v20150114.jar"],
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.jar b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.jar
new file mode 100644
index 0000000..c778db6
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.jar
Binary files differ
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.jar.sha1 b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.jar.sha1
new file mode 100644
index 0000000..80089b1
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.jar.sha1
@@ -0,0 +1 @@
+262b7fb2e9872f470c059bc4053a3f2f7449932d
\ No newline at end of file
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.pom b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.pom
new file mode 100644
index 0000000..8ad59af
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.pom
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ Copyright (c) 2013, 2014 Sonatype, Inc.
+ ~ All rights reserved. This program and the accompanying materials
+ ~ are made available under the terms of the Eclipse Public License v1.0
+ ~ which accompanies this distribution, and is available at
+ ~ http://www.eclipse.org/legal/epl-v10.html
+ ~
+ ~ Contributors:
+ ~    Sonatype, Inc. - initial API and implementation
+-->
+
+<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.eclipse.aether</groupId>
+    <artifactId>aether</artifactId>
+    <version>1.0.2.v20150114</version>
+  </parent>
+
+  <artifactId>aether-transport-http</artifactId>
+
+  <name>Aether Transport HTTP</name>
+  <description>
+      A transport implementation for repositories using http:// and https:// URLs.
+  </description>
+
+  <properties>
+    <bundle.symbolicName>org.eclipse.aether.transport.http</bundle.symbolicName>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-spi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+      <version>4.2.6</version>
+      <exclusions>
+        <exclusion>
+          <!-- using jcl-over-slf4j instead -->
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <version>1.6.2</version>
+    </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.sonatype.sisu</groupId>
+      <artifactId>sisu-guice</artifactId>
+      <classifier>no_aop</classifier>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-library</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-test-util</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+      <version>7.6.14.v20131031</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <version>1.0.7</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>animal-sniffer-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.eclipse.sisu</groupId>
+        <artifactId>sisu-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+            <Import-Package>org.apache.http.*;version="[4.2.1,4.4)",*</Import-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
diff --git a/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.pom.sha1 b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.pom.sha1
new file mode 100644
index 0000000..77d5ffb
--- /dev/null
+++ b/common/m2/repository/org/eclipse/aether/aether-transport-http/1.0.2.v20150114/aether-transport-http-1.0.2.v20150114.pom.sha1
@@ -0,0 +1 @@
+21e0b7211f3e91be97e5f33822603a27bbd5fe02
\ No newline at end of file
diff --git a/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/BUILD b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/BUILD
new file mode 100644
index 0000000..6f9009f
--- /dev/null
+++ b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/BUILD
@@ -0,0 +1,7 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+
+java_import(
+    name = "jar",
+    jars = ["jcl-over-slf4j-1.6.2.jar"],
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.jar b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.jar
new file mode 100644
index 0000000..a1b228d
--- /dev/null
+++ b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.jar
Binary files differ
diff --git a/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.jar.sha1 b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.jar.sha1
new file mode 100644
index 0000000..da76209
--- /dev/null
+++ b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.jar.sha1
@@ -0,0 +1 @@
+ac4cd2d6d0cf4342b4e8fd520c686851fc681912
\ No newline at end of file
diff --git a/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.pom b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.pom
new file mode 100644
index 0000000..849f61c
--- /dev/null
+++ b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.pom
@@ -0,0 +1,83 @@
+<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>

+		<groupId>org.slf4j</groupId>

+		<artifactId>slf4j-parent</artifactId>

+    <version>1.6.2</version>

+	</parent>

+	

+	<modelVersion>4.0.0</modelVersion>

+

+	<groupId>org.slf4j</groupId>

+	<artifactId>jcl-over-slf4j</artifactId>

+	<packaging>jar</packaging>

+	<name>JCL 1.1.1 implemented over SLF4J</name>

+

+	<url>http://www.slf4j.org</url>

+	<description>

+		JCL 1.1.1 implementation over SLF4J

+	</description>

+

+  <dependencies>

+    <!--

+    <dependency>

+      <groupId>org.slf4j</groupId>

+      <artifactId>slf4j-nop</artifactId>

+      <version>${project.version}</version>

+      <scope>provided</scope>

+    </dependency>

+    -->

+

+    <dependency>

+      <groupId>org.slf4j</groupId>

+      <artifactId>slf4j-api</artifactId>

+    </dependency>

+

+    <dependency>

+      <groupId>org.slf4j</groupId>

+      <artifactId>slf4j-jdk14</artifactId>

+      <scope>test</scope>

+    </dependency>

+   

+  </dependencies>

+

+  <build>

+    <plugins>		

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

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

+        <configuration>

+          <archive>

+            <manifestEntries>

+              <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>

+              <Bundle-Description>${project.description}</Bundle-Description>

+              <Implementation-Version>${project.version}</Implementation-Version>

+            </manifestEntries>

+            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>

+          </archive>

+        </configuration>			

+      </plugin>

+    </plugins>

+  </build>

+

+  <!-- Check whether we comply with the interfaces of JCL 1.1.1

+  <reporting>

+    <plugins>

+      <plugin>

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

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

+        <configuration>

+          <comparisonArtifacts>            

+            <comparisonArtifact>

+              <groupId>commons-logging</groupId>

+              <artifactId>commons-logging</artifactId>

+              <version>1.1.1</version>

+            </comparisonArtifact>

+          </comparisonArtifacts>

+        </configuration>

+      </plugin>

+    </plugins>

+  </reporting>

+  -->

+

+</project>
\ No newline at end of file
diff --git a/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.pom.sha1 b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.pom.sha1
new file mode 100644
index 0000000..32f88fd
--- /dev/null
+++ b/common/m2/repository/org/slf4j/jcl-over-slf4j/1.6.2/jcl-over-slf4j-1.6.2.pom.sha1
@@ -0,0 +1 @@
+4936b2ce68f52787881a70400592cb99d18d5fab
\ No newline at end of file
diff --git a/common/m2/repository/org/slf4j/slf4j-api/1.6.2/BUILD b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/BUILD
new file mode 100644
index 0000000..263eb1f
--- /dev/null
+++ b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/BUILD
@@ -0,0 +1,7 @@
+# This BUILD file was generated by //tools/base/bazel:java_import_generator, please do not edit.
+
+java_import(
+    name = "jar",
+    jars = ["slf4j-api-1.6.2.jar"],
+    visibility = ["//visibility:public"],
+)
diff --git a/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.jar b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.jar
new file mode 100644
index 0000000..621f514
--- /dev/null
+++ b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.jar
Binary files differ
diff --git a/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.jar.sha1 b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.jar.sha1
new file mode 100644
index 0000000..a2f93ea
--- /dev/null
+++ b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.jar.sha1
@@ -0,0 +1 @@
+8619e95939167fb37245b5670135e4feb0ec7d50
\ No newline at end of file
diff --git a/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.pom b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.pom
new file mode 100644
index 0000000..a76fda2
--- /dev/null
+++ b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.pom
@@ -0,0 +1,101 @@
+<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>

+    <groupId>org.slf4j</groupId>

+    <artifactId>slf4j-parent</artifactId>

+    <version>1.6.2</version>

+  </parent>

+

+  <modelVersion>4.0.0</modelVersion>

+

+  <groupId>org.slf4j</groupId>

+  <artifactId>slf4j-api</artifactId>

+  <packaging>jar</packaging>

+  <name>SLF4J API Module</name>

+

+  <url>http://www.slf4j.org</url>

+  <description>The slf4j API</description>

+

+  <dependencies>

+

+  </dependencies> 

+

+  <build>

+    <plugins>

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

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

+        <configuration>

+          <forkMode>once</forkMode>

+          <reportFormat>plain</reportFormat>

+          <trimStackTrace>false</trimStackTrace>

+          <excludes>

+            <exclude>**/AllTest.java</exclude>

+            <exclude>**/PackageTest.java</exclude>

+          </excludes>

+        </configuration>

+      </plugin>

+

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

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

+        <configuration>

+          <archive>

+            <manifestEntries>

+              <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>

+              <Bundle-Description>${project.description}</Bundle-Description>

+              <Implementation-Version>${project.version}</Implementation-Version>

+            </manifestEntries>

+            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>

+          </archive>

+        </configuration>

+        <executions>

+          <execution>

+            <id>bundle-test-jar</id>

+            <phase>package</phase>

+            <goals>

+              <goal>jar</goal>

+              <goal>test-jar</goal>

+            </goals>

+          </execution>

+        </executions>

+      </plugin>

+

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

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

+        <executions>

+          <execution>

+            <phase>process-classes</phase>

+            <goals>

+             <goal>run</goal>

+            </goals>

+          </execution>

+        </executions>

+        <configuration>

+          <tasks>

+            <echo>Removing slf4j-api's dummy StaticLoggerBinder and StaticMarkerBinder</echo>

+            <delete dir="target/classes/org/slf4j/impl"/>

+          </tasks>

+        </configuration>

+      </plugin>

+

+    </plugins>

+

+  </build>

+  

+  <reporting>

+    <plugins>

+      <plugin>

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

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

+        <configuration>

+          <comparisonVersion>1.5.6</comparisonVersion>

+        </configuration>

+      </plugin>

+    </plugins>

+  </reporting>

+

+</project>
\ No newline at end of file
diff --git a/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.pom.sha1 b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.pom.sha1
new file mode 100644
index 0000000..3d89763
--- /dev/null
+++ b/common/m2/repository/org/slf4j/slf4j-api/1.6.2/slf4j-api-1.6.2.pom.sha1
@@ -0,0 +1 @@
+50c701e952a5c7b63b3fa67be4b22253ec30c900
\ No newline at end of file
diff --git a/common/m2/repository/org/slf4j/slf4j-parent/1.6.2/slf4j-parent-1.6.2.pom b/common/m2/repository/org/slf4j/slf4j-parent/1.6.2/slf4j-parent-1.6.2.pom
new file mode 100644
index 0000000..fa0c794
--- /dev/null
+++ b/common/m2/repository/org/slf4j/slf4j-parent/1.6.2/slf4j-parent-1.6.2.pom
@@ -0,0 +1,353 @@
+<?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>

+

+	<groupId>org.slf4j</groupId>

+	<artifactId>slf4j-parent</artifactId>

+	<version>1.6.2</version>

+

+	<packaging>pom</packaging>

+	<name>SLF4J</name>

+

+	<url>http://www.slf4j.org</url>

+

+	<organization>

+		<name>QOS.ch</name>

+		<url>http://www.qos.ch</url>

+	</organization>

+	<inceptionYear>2005</inceptionYear>

+

+  <licenses>

+    <license>

+      <name>MIT License</name>

+      <url>http://www.opensource.org/licenses/mit-license.php</url>

+      <distribution>repo</distribution>

+    </license>

+  </licenses>

+

+  <properties>

+    <slf4j.api.minimum.compatible.version>1.6.0</slf4j.api.minimum.compatible.version>

+    <cal10n.version>0.7.4</cal10n.version>

+    <log4j.version>1.2.16</log4j.version>

+  </properties>

+

+

+	<modules>

+		<module>slf4j-api</module>

+    <!--<module>slf4j-scala-api</module>-->

+    <module>slf4j-simple</module>  

+    <module>slf4j-nop</module>

+		<module>slf4j-jdk14</module>

+    <module>slf4j-log4j12</module>

+    <module>slf4j-jcl</module>

+    <module>slf4j-ext</module>  

+    <module>jcl-over-slf4j</module>

+    <module>log4j-over-slf4j</module>

+    <module>jul-to-slf4j</module>

+    <module>integration</module>

+    <module>slf4j-site</module>

+    <module>slf4j-migrator</module>

+  </modules>

+

+	<dependencies>

+    <dependency>

+      <groupId>junit</groupId>

+      <artifactId>junit</artifactId>

+      <version>3.8.1</version>

+      <scope>test</scope>

+		</dependency>

+	</dependencies>

+

+ 

+ <dependencyManagement>

+    <dependencies>

+

+      <dependency>

+        <groupId>org.slf4j</groupId>

+        <artifactId>slf4j-api</artifactId>

+        <version>${project.version}</version>

+      </dependency>

+

+      <dependency>

+        <groupId>org.slf4j</groupId>

+        <artifactId>slf4j-jdk14</artifactId>

+        <version>${project.version}</version>

+      </dependency>

+

+      <dependency>

+        <groupId>log4j</groupId>

+        <artifactId>log4j</artifactId>

+        <version>${log4j.version}</version>

+      </dependency>

+

+    <dependency>

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

+      <artifactId>cal10n-api</artifactId>

+      <version>${cal10n.version}</version>

+    </dependency>		

+

+   </dependencies>

+ </dependencyManagement>

+

+

+	<build>

+    <resources>

+      <resource>

+        <directory>src/main/resources</directory>

+        <filtering>true</filtering>

+      </resource>

+    </resources>

+

+		<plugins>

+			<plugin>

+				<groupId>org.apache.maven.plugins</groupId>

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

+				<configuration>

+					<source>1.3</source>

+					<target>1.3</target>

+				</configuration>

+			</plugin>

+ 

+			<plugin>

+				<groupId>org.apache.maven.plugins</groupId>

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

+				<configuration>

+					<forkMode>once</forkMode>

+					<reportFormat>plain</reportFormat>

+					<trimStackTrace>false</trimStackTrace>

+					<excludes>

+						<exclude>**/AllTest.java</exclude>

+						<exclude>**/PackageTest.java</exclude>

+					</excludes>

+				</configuration>

+			</plugin>		

+

+			<plugin>

+				<groupId>org.apache.maven.plugins</groupId>        

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

+        <executions>

+          <execution>

+            <phase>package</phase>

+            <goals>              

+              <goal>jar</goal>

+            </goals>

+          </execution>

+        </executions>

+      </plugin>

+

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

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

+        <configuration>

+        	<aggregate>true</aggregate>

+          <excludePackageNames>org.slf4j.migrator:org.slf4j.migrator.*</excludePackageNames>

+					<links>

+						<link>

+							http://java.sun.com/j2se/1.5.0/docs/api

+						</link>

+					</links>

+          <groups>

+            <group>

+              <title>SLF4J packages</title>

+              <packages>org.slf4j:org.slf4j.*</packages>

+            </group>

+

+            <group>

+              <title>SLF4J extensions</title>

+              <packages>org.slf4j.profiler:org.slf4j.ext:org.slf4j.instrumentation:org.slf4j.agent</packages>

+            </group>

+

+            <group>

+              <title>Jakarta Commons Logging packages</title>

+              <packages>org.apache.commons.*</packages>

+            </group>

+

+            <group>

+              <title>Apache log4j</title>

+              <packages>org.apache.log4j</packages>

+            </group>

+

+            <group>

+              <title>java.util.logging (JUL) to SLF4J bridge</title>

+              <packages>org.slf4j.bridge</packages>

+            </group>

+

+          </groups>

+        </configuration>

+      </plugin>

+

+

+      <!-- as suggested in http://bugzilla.slf4j.org/show_bug.cgi?id=152 -->

+      <plugin>

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

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

+        <executions>

+          <execution>

+            <id>parse-version</id>

+            <goals>

+              <goal>parse-version</goal>

+            </goals>

+          </execution>

+        </executions>

+      </plugin>

+    </plugins>

+

+	</build>

+

+  <profiles>

+    <profile>

+      <id>skipTests</id>     

+      <properties>

+        <maven.test.skip>true</maven.test.skip>

+      </properties>

+    </profile>

+     <profile>

+      <id>osgi</id>

+      <modules>

+         <module>osgi-over-slf4j</module>

+         <module>slf4j-osgi-test-bundle</module>

+         <module>slf4j-osgi-integration-test</module>

+      </modules>

+

+      <repositories>

+        <repository>

+          <id>m2apache.snapshots</id>

+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>

+          <releases>

+            <enabled>false</enabled>

+          </releases>

+          <snapshots>

+            <enabled>true</enabled>

+          </snapshots>

+        </repository>

+

+        <repository>

+          <id>springframework.org</id>

+          <name>Springframework Maven SNAPSHOT Repository</name>

+          <url>http://static.springframework.org/maven2-snapshots/</url>

+          <snapshots>

+            <enabled>true</enabled>

+          </snapshots>

+        </repository>

+

+      </repositories>

+

+      <pluginRepositories>

+        <pluginRepository>

+          <id>apache.snapshots</id>

+          <name>Apache Snapshot Plugin Repository</name>

+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>

+          <releases>

+            <enabled>false</enabled>

+          </releases>

+          <snapshots>

+            <enabled>true</enabled> 

+          </snapshots>

+        </pluginRepository>

+      </pluginRepositories>

+

+    </profile>

+

+

+    <profile>

+      <id>javadocjar</id>

+      <build>

+        <plugins>

+          <plugin>

+            <groupId>org.apache.maven.plugins</groupId>

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

+            <executions>

+              <execution>

+                <id>attach-javadocs</id>

+                <goals>

+                  <goal>jar</goal>

+                </goals>

+              </execution>

+            </executions>

+          </plugin>

+        </plugins>

+      </build>

+    </profile>

+  </profiles>

+

+  <pluginRepositories>

+    <pluginRepository>

+      <id>apache.snapshots</id>

+      <name>Apache Snapshot Plugin Repository</name>

+      <url>http://people.apache.org/repo/m2-snapshot-repository</url>

+      <releases>

+        <enabled>false</enabled>

+      </releases>

+      <snapshots>

+        <enabled>true</enabled> 

+     </snapshots>

+    </pluginRepository>

+  </pluginRepositories>

+  

+	<reporting>

+		<plugins>

+			<plugin>

+				<groupId>org.apache.maven.plugins</groupId>

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

+			</plugin>

+

+			<plugin>

+				<groupId>org.apache.maven.plugins</groupId>

+				<artifactId>maven-project-info-reports-plugin</artifactId>

+				<reportSets>

+					<reportSet><reports/></reportSet>

+				</reportSets>

+			</plugin>	    

+      

+      <plugin>

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

+        <version>2.1</version>

+        <configuration>

+          <descriptors>

+            <descriptor>

+              src/main/assembly/source.xml

+            </descriptor>

+          </descriptors>

+					<finalName>slf4j-${project.version}</finalName>

+					<appendAssemblyId>false</appendAssemblyId>

+					<outputDirectory>target/site/dist/</outputDirectory>

+				</configuration>

+			</plugin>

+

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

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

+        <configuration>

+          <aggregate>true</aggregate>

+          <javadocDir>target/site/apidocs/</javadocDir>

+          <linkJavadoc>true</linkJavadoc>

+        </configuration>

+      </plugin>

+

+

+    </plugins>

+

+	</reporting>

+	

+	  

+  <scm>

+		<connection>scm:svn:http://svn.slf4j.org/repos/slf4j/trunk</connection>

+		<developerConnection>scm:svn:https://svn.slf4j.org/repos/slf4j/trunk</developerConnection>

+		<url>http://svn.slf4j.org/viewvc/slf4j/trunk/</url>

+	</scm>

+	

+	<distributionManagement>

+		<site>

+			<id>pixie</id>

+			<url>scp://pixie.qos.ch/var/www/www.slf4j.org/htdocs/</url>

+		</site>

+

+    <repository>

+      <id>pixie</id>

+      <url>scp://pixie.qos.ch/var/mvnrepo/</url>

+    </repository>

+

+	</distributionManagement>

+  

+</project>

diff --git a/common/m2/repository/org/slf4j/slf4j-parent/1.6.2/slf4j-parent-1.6.2.pom.sha1 b/common/m2/repository/org/slf4j/slf4j-parent/1.6.2/slf4j-parent-1.6.2.pom.sha1
new file mode 100644
index 0000000..929d3ad
--- /dev/null
+++ b/common/m2/repository/org/slf4j/slf4j-parent/1.6.2/slf4j-parent-1.6.2.pom.sha1
@@ -0,0 +1 @@
+1361a975c89ef08086e1d8c2b26f927c63726aca
\ No newline at end of file
diff --git a/linux-x86_64/kythe/studio/build_studio_kythe.sh b/linux-x86_64/kythe/studio/build_studio_kythe.sh
index 5bc8a5b..773b72e 100755
--- a/linux-x86_64/kythe/studio/build_studio_kythe.sh
+++ b/linux-x86_64/kythe/studio/build_studio_kythe.sh
@@ -39,13 +39,15 @@
 
 # For each kythe index file run the java index to generate kythe
 # entries.
+# Ignore failures from analysis (|| true) as Kythe will do statistical analysis
+# on the entries and produce indexes for builds with 95% coverage and up.
 cd "${OUT_ENTRIES}"
 for KINDEX in ${KINDEXES}; do
   ENTRIES="$(basename "${KINDEX}").entries"
   if [ ! -f "${ENTRIES}" ]; then
     "${JDK_18_x64}/bin/java" -jar \
     "${KYTHE_ROOT}/indexers/java_indexer.jar" \
-      "${KINDEX}" > "${ENTRIES}"
+      "${KINDEX}" > "${ENTRIES}" || true
   fi
 done;