Skip to content

Commit

Permalink
Release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
speedblue committed Feb 18, 2015
1 parent 5173615 commit 20f65cd
Show file tree
Hide file tree
Showing 15 changed files with 186 additions and 4 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b82bcd1bb11b38617ace9a4e469efe56
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5268796cbd070bc8a101dc689d2d0b0513bafcaa
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ae4e8ff699cc2193622a765017e89bba
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2b709adf9f9f92bd46c64a7b2fb21f19f5ae44c0
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
29d83e6d879c0444b7264507dfedb6ec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
d1a3a2d58dbdabed190e8023d8c8b688e0954f7a
173 changes: 173 additions & 0 deletions repository/com/algolia/algoliasearch/1.3.2/algoliasearch-1.3.2.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
<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.3.2</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.3.2</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>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<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.2</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</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 @@
2048977e352a67ab9ff3e4cdda217102
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a0d7e7d28eef2324b80fc97d2f918c35691949b1
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.3.1</release>
<release>1.3.2</release>
<versions>
<version>1.0.0</version>
<version>1.1.0</version>
Expand Down Expand Up @@ -34,7 +34,8 @@
<version>1.2.2</version>
<version>1.2.3</version>
<version>1.3.1</version>
<version>1.3.2</version>
</versions>
<lastUpdated>20150107175701</lastUpdated>
<lastUpdated>20150218094901</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c9012d1641b3cc1d3b21ec4c4598602a
90cf5ec79bc95b3e69346f3e3d219dd9
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6a1089c6ee8af6c7e5e8dddfab2bff6c29aff848
644602176e30ea74484b773305ad2c744d4cfd35

0 comments on commit 20f65cd

Please sign in to comment.