Skip to content

Commit

Permalink
1.1.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
redox committed Feb 26, 2014
1 parent c724bcf commit 80c5cf8
Show file tree
Hide file tree
Showing 15 changed files with 172 additions and 4 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
59337ccee22645272c7c80e5f5082fc2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0998c36c6c25172aea1b44c981f73147806c7783
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e0dcb3ffec0b3fca355e0e8419b8d7c3
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7616f3cba485569bb58287904d31aa03a7d3637e
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
eda4e6dbaa6c7eef0fa08ce280061c91
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f402ca1dffa694c2fdce50793b4f6aa56a25ba12
159 changes: 159 additions & 0 deletions repository/com/algolia/algoliasearch/1.1.13/algoliasearch-1.1.13.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
<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.algolia</groupId>
<artifactId>algoliasearch</artifactId>
<version>1.1.13</version>
<name>Algolia Search Client</name>
<description>Java client for Algolia Search API</description>
<url>https://github.com/algolia/algoliasearch-client-java</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name>The MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:algolia/algoliasearch-client-java.git</connection>
<url>scm:git:git@github.com:algolia/algoliasearch-client-java.git</url>
<developerConnection>scm:git:git@github.com:algolia/algoliasearch-client-java.git</developerConnection>
<tag>1.1.13</tag>
</scm>
<distributionManagement>
<repository>
<id>algoliasearch</id>
<url>file://${basedir}/repository/</url>
</repository>
</distributionManagement>
<developers>
<developer>
<id>algolia</id>
<name>Algolia SAS</name>
<email>contact@algolia.com</email>
<url>https://github.com/algolia/algoliasearch-client-java</url>
</developer>
</developers>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<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>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.4.201312101107</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>2.0.1</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.jacoco</groupId>
<artifactId>
jacoco-maven-plugin
</artifactId>
<versionRange>
[0.6.4.201312101107,)
</versionRange>
<goals>
<goal>prepare-agent</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</repository>
</repositories>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
369eb92425a950189f082b022a84196d
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
825b2b00a3abfba77aa1daf5787a3e3c3f8a750e
5 changes: 3 additions & 2 deletions repository/com/algolia/algoliasearch/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.algolia</groupId>
<artifactId>algoliasearch</artifactId>
<versioning>
<release>1.1.12</release>
<release>1.1.13</release>
<versions>
<version>1.0.0</version>
<version>1.1.0</version>
Expand All @@ -19,7 +19,8 @@
<version>1.1.10</version>
<version>1.1.11</version>
<version>1.1.12</version>
<version>1.1.13</version>
</versions>
<lastUpdated>20140201213335</lastUpdated>
<lastUpdated>20140226005743</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
438c3b7e6aab3f7682386dadc7e8b8b4
6d61a5ec93b4b3efe64048eed904959e
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5337017eaeab61e40a319351d8eed372716d8c99
1bb4f5103dbd31b8c14cbcef4a3222f55a8e259f

0 comments on commit 80c5cf8

Please sign in to comment.