Skip to content
This repository has been archived by the owner on Feb 14, 2020. It is now read-only.

Commit

Permalink
Use com.aerospike group id for release. Update README to reflect change.
Browse files Browse the repository at this point in the history
  • Loading branch information
jboone100 committed Apr 11, 2017
1 parent b11c1ec commit 52cd2e3
Show file tree
Hide file tree
Showing 2 changed files with 182 additions and 89 deletions.
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,30 @@ Add the Maven dependency:

```xml
<dependency>
<groupId>org.springframework.data</groupId>
<groupId>com.aerospike</groupId>
<artifactId>spring-data-aerospike</artifactId>
<version>1.5.0.RELEASE</version>
<version>1.0.2.RELEASE</version>
</dependency>
```

If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version.
The Aersopike Spring Data connector depends on the Aerospike Client and the Aerospike Helper projects:

```xml
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-aerospike</artifactId>
<version>1.6.0.BUILD-SNAPSHOT</version>
<groupId>com.aerospike</groupId>
<artifactId>aerospike-client</artifactId>
<version>3.3.4</version>
</dependency>

<repository>
<id>spring-libs-snapshot</id>
<name>Spring Snapshot Repository</name>
<url>http://repo.spring.io/libs-snapshot</url>
</repository>
<dependency>
<groupId>com.aerospike</groupId>
<artifactId>aerospike-helper-java</artifactId>
<version>1.2</version>
</dependency>
```

Note that the 1.2 version of the Aerospike Helper requires Aerospike server 3.12+ as it takes advantage of the PredExp feature for performing queries. Use version 1.1 of the Aerospike Helper for earlier versions of the Aerospike Server.

### AerospikeTemplate

AerospikeTemplate is the central support class for Aerospike database operations. It provides:
Expand Down
247 changes: 169 additions & 78 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,35 +1,97 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>org.springframework.data</groupId>
<groupId>com.aerospike</groupId>
<artifactId>spring-data-aerospike</artifactId>
<version>1.0.1.BUILD-SNAPSHOT</version>

<version>1.0.2.RELEASE</version>
<name>Spring Data Aerospike</name>

<organization>
<name>Aerospike Inc.</name>
<url>http://www.aerospike.com</url>
</organization>

<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>1.9.0.BUILD-SNAPSHOT</version>
<version>1.9.1.RELEASE</version>
</parent>

<properties>
<aerospike>3.3.2</aerospike>
<springdata.commons>1.13.0.RC1</springdata.commons>
<springdata.keyvalue>1.2.0.M1</springdata.keyvalue>
<aerospike>3.3.4</aerospike>
<springdata.commons>1.13.1.RELEASE</springdata.commons>
<springdata.keyvalue>1.2.1.RELEASE</springdata.keyvalue>
<dist.key>DATAAERO</dist.key>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<asciidoctor.maven.plugin.version>1.5.2.1</asciidoctor.maven.plugin.version>
<jruby.version>1.7.20.1</jruby.version>

</properties>

<dependencies>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<id>Peter Milne</id>
<name>Peter Milne</name>
<email>[email protected]</email>
<url>http://www.aerospike.com</url>
<organization>Aerospike Inc.</organization>
<organizationUrl>http://www.aerospike.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-6</timezone>
</developer>
<developer>
<id>Michael Zhang</id>
<name>Michael Zhang</name>
<email>[email protected]</email>
<url>http://www.aerospike.com</url>
<organization>Aerospike Inc.</organization>
<organizationUrl>http://www.aerospike.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-8</timezone>
</developer>
<developer>
<id>Jeff Boone</id>
<name>Jeff Boone</name>
<email>[email protected]</email>
<url>http://www.aerospike.com</url>
<organization>Aerospike Inc.</organization>
<organizationUrl>http://www.aerospike.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-8</timezone>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/spring-projects/spring-data-aerospike.git</connection>
<developerConnection>scm:git:ssh://[email protected]:spring-projects/spring-data-aerospike.git</developerConnection>
<url>https://github.com/spring-projects/spring-data-aerospike</url>
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
Expand Down Expand Up @@ -79,7 +141,7 @@
<dependency>
<groupId>com.aerospike</groupId>
<artifactId>aerospike-helper-java</artifactId>
<version>1.1</version>
<version>1.2</version>
</dependency>

<!-- Logging -->
Expand All @@ -98,72 +160,101 @@
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor.maven.plugin.version}</version>
<configuration>
<goalPrefix>asciidoctor</goalPrefix>
<backend>html5</backend>
<doctype>book</doctype>
<sourceHighlighter>coderay</sourceHighlighter>
</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.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<versionRange>
[3.1,)
</versionRange>
<goals>
<goal>testCompile</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>

</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor.maven.plugin.version}</version>
<configuration>
<goalPrefix>asciidoctor</goalPrefix>
<backend>html5</backend>
<doctype>book</doctype>
<sourceHighlighter>coderay</sourceHighlighter>
</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.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<versionRange>
[3.1,)
</versionRange>
<goals>
<goal>testCompile</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>

<resources>
<resource>
<directory>${project.basedir}/src/main/lua</directory>
Expand Down

0 comments on commit 52cd2e3

Please sign in to comment.