Skip to content

Commit

Permalink
version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
speedblue committed Sep 14, 2014
1 parent 82591de commit 0ee21a8
Show file tree
Hide file tree
Showing 15 changed files with 180 additions and 4 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ab1894c7d003f75bbf5c2fc6da9308fb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0e2c9ed99f8bff2a9aef1cfdd1a2df2e9b9644fb
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ab0057f14dfdde98a30fca51e1ea96da
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e61730d564d954b4460cfd2c5a58554dd6d4f2dc
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a4e1c6e1dce0dbfa11f728888d5ee261
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4f20b4e48e21d5ff9840ad1c9d777e92c194b775
167 changes: 167 additions & 0 deletions repository/com/algolia/algoliasearch/1.2.1/algoliasearch-1.2.1.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
<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.2.1</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.2.1</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.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 @@
081a4bf0b83a6733b3164dfe777cb9f3
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8dd461382087b7f1e28b06216c0c84d53c82990f
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.2.0</release>
<release>1.2.1</release>
<versions>
<version>1.0.0</version>
<version>1.1.0</version>
Expand All @@ -30,7 +30,8 @@
<version>1.1.21</version>
<version>1.1.23</version>
<version>1.2.0</version>
<version>1.2.1</version>
</versions>
<lastUpdated>20140820142242</lastUpdated>
<lastUpdated>20140914195640</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
de09c955f390dc2a721a074b0f3e59b8
6f2c04c6af1eca72b101dcbb80ca8e34
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e7d3f025d4654ead4cadef264fe81defd3ded974
70a57b2e3eb27a8cc32f8e5249eced1e996d3381

0 comments on commit 0ee21a8

Please sign in to comment.