Tweaking build.

This commit is contained in:
Jon Brisbin
2012-05-01 15:10:23 -05:00
parent 1f589b40fd
commit b2564ceeca
2 changed files with 5 additions and 5 deletions

View File

@@ -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()
}
}

View File

@@ -13,6 +13,6 @@ import org.springframework.data.rest.repository.annotation.RestPathSegment;
public interface PersonRepository extends CrudRepository<Person, Long> {
@RestPathSegment("byName")
public List<Person> findByName(@Param("nme") String name);
public List<Person> findByName(@Param("name") String name);
}