diff --git a/docs/src/reference/docbook/index.xml b/docs/src/reference/docbook/index.xml index 13911fa5..d34b81e3 100644 --- a/docs/src/reference/docbook/index.xml +++ b/docs/src/reference/docbook/index.xml @@ -13,22 +13,27 @@ Costin Leau - SpringSource, a division of VMware + SpringSource, a division of Pivotal - + + David + Turanski + SpringSource, a division of Pivotal + + + John + Blum + SpringSource, a division of Pivotal + + Oliver Gierke - SpringSource, a division of VMware - - - David - Turanski - SpringSource, a division of VMware + SpringSource, a division of Pivotal Lyndon Adams - VMware + Pivotal @@ -87,4 +92,4 @@ Appendices - \ No newline at end of file + diff --git a/docs/src/reference/docbook/reference/repositories.xml b/docs/src/reference/docbook/reference/repositories.xml index 79626bde..9c4ef4ab 100644 --- a/docs/src/reference/docbook/reference/repositories.xml +++ b/docs/src/reference/docbook/reference/repositories.xml @@ -187,6 +187,15 @@ public class Person { … } x.firstname = $1 + + Like + + findByFirstnameLike(String + name) + + x.firstname LIKE $1 + + Not diff --git a/maven.gradle b/maven.gradle index 577a73f6..a6ee43c6 100644 --- a/maven.gradle +++ b/maven.gradle @@ -57,17 +57,22 @@ def customizePom(pom, gradleProject) { developer { id = 'dturanski' name = 'David Turanski' - email = 'dturanski@vmware.com' + email = 'dturanski@gopivotal.com' + } + developer { + id = 'jblum' + name = 'John Blum' + email = 'jblum@gopivotal.com' } developer { id = 'ogierke' name = 'Oliver Gierke' - email = 'ogierke@vmware.com' + email = 'ogierke@gopivotal.com' } developer { id = 'ladams' name = 'Lyndon Adams' - email = 'ladams@vmware.com' + email = 'ladams@gopivotal.com' } } } diff --git a/src/test/java/org/springframework/data/gemfire/repository/query/PredicatesUnitTests.java b/src/test/java/org/springframework/data/gemfire/repository/query/PredicatesUnitTests.java index 7b1b49fd..86d36844 100644 --- a/src/test/java/org/springframework/data/gemfire/repository/query/PredicatesUnitTests.java +++ b/src/test/java/org/springframework/data/gemfire/repository/query/PredicatesUnitTests.java @@ -30,6 +30,7 @@ import org.springframework.data.repository.query.parser.Part; /** * * @author Oliver Gierke + * @author John Blum */ @SuppressWarnings("unused") public class PredicatesUnitTests {