diff --git a/build.gradle b/build.gradle index c190cda96..007fdf9f2 100644 --- a/build.gradle +++ b/build.gradle @@ -14,10 +14,10 @@ allprojects { } repositories { - maven { url "http://repo.springframework.org/milestone" } - maven { url "http://repo.springframework.org/release" } - mavenCentral() - mavenLocal() + maven { url "http://repo.springsource.org/libs-milestone" } + maven { url "http://repo.springsource.org/libs-release" } + //mavenCentral() + //mavenLocal() } } diff --git a/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/test/webmvc/PersonRepository.java b/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/test/webmvc/PersonRepository.java index 846bcf815..3bb9efa27 100644 --- a/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/test/webmvc/PersonRepository.java +++ b/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/test/webmvc/PersonRepository.java @@ -13,6 +13,6 @@ import org.springframework.data.rest.repository.annotation.RestPathSegment; public interface PersonRepository extends CrudRepository { @RestPathSegment("byName") - public List findByName(@Param("nme") String name); + public List findByName(@Param("name") String name); }