+ prepare 1.0.0.M3 release
+ add missing javadocs + update some copyrights/dates
This commit is contained in:
8
pom.xml
8
pom.xml
@@ -5,7 +5,7 @@
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-keyvalue-dist</artifactId>
|
||||
<name>Spring Data Key-Value Distribution</name>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.0.0.M3</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<properties>
|
||||
@@ -52,9 +52,9 @@
|
||||
<developer>
|
||||
<id>jbrisbin</id>
|
||||
<name>Jon Brisbin</name>
|
||||
<email>jon at jbrisbin.com</email>
|
||||
<organization>NPC International</organization>
|
||||
<organizationUrl>http://www.npcinternational.com</organizationUrl>
|
||||
<email>jbrisbin at vmware.com</email>
|
||||
<organization>SpringSource</organization>
|
||||
<organizationUrl>http://www.SpringSource.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-keyvalue-parent</artifactId>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.0.0.M3</version>
|
||||
<relativePath>../spring-data-keyvalue-parent/pom.xml</relativePath>
|
||||
</parent>
|
||||
<artifactId>spring-data-keyvalue-core</artifactId>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<artifactId>spring-data-keyvalue-parent</artifactId>
|
||||
<name>Spring Data Key-Value Parent</name>
|
||||
<url>http://www.springsource.org/spring-data/data-keyvalue</url>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.0.0.M3</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-keyvalue-parent</artifactId>
|
||||
<relativePath>../spring-data-keyvalue-parent/pom.xml</relativePath>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.0.0.M3</version>
|
||||
</parent>
|
||||
<artifactId>spring-data-redis</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
@@ -41,7 +41,7 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-keyvalue-core</artifactId>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.0.0.M3</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Logging -->
|
||||
|
||||
@@ -16,7 +16,11 @@
|
||||
package org.springframework.data.keyvalue.redis.connection;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Connection-specific commands supported by Redis.
|
||||
*
|
||||
* @author Costin Leau
|
||||
*/
|
||||
public interface RedisConnectionCommands {
|
||||
|
||||
public abstract void select(int dbIndex);
|
||||
|
||||
@@ -19,7 +19,11 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Key-specific commands supported by Redis.
|
||||
*
|
||||
* @author Costin Leau
|
||||
*/
|
||||
public interface RedisKeyCommands {
|
||||
|
||||
public abstract Boolean exists(byte[] key);
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Query package for Redis template.
|
||||
*/
|
||||
package org.springframework.data.keyvalue.redis.core.query;
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Dedicated support package for Redis hashes.
|
||||
*
|
||||
* Provides mapping of objects to hashes/maps (and vice versa).
|
||||
*/
|
||||
package org.springframework.data.keyvalue.redis.hash;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-keyvalue-parent</artifactId>
|
||||
<relativePath>../spring-data-keyvalue-parent/pom.xml</relativePath>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.0.0.M3</version>
|
||||
</parent>
|
||||
<artifactId>spring-data-riak</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
</xsl:for-each>
|
||||
</fo:block>
|
||||
<fo:block font-family="Helvetica" font-size="12pt" padding="10mm">
|
||||
<xsl:text>Copyright © 2006-2009</xsl:text>
|
||||
<xsl:text>Copyright © 2010-2011</xsl:text>
|
||||
</fo:block>
|
||||
|
||||
<fo:block font-family="Helvetica" font-size="10pt" padding="1mm">
|
||||
@@ -106,7 +106,7 @@
|
||||
<xsl:param name="gentext-key" select="''"/>
|
||||
<xsl:variable name="Version">
|
||||
<xsl:if test="//releaseinfo">
|
||||
<xsl:text>Spring Data Redis (</xsl:text><xsl:value-of select="//releaseinfo" /><xsl:text>)</xsl:text>
|
||||
<xsl:text>Spring Data Key Value (</xsl:text><xsl:value-of select="//releaseinfo" /><xsl:text>)</xsl:text>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
|
||||
Reference in New Issue
Block a user