diff --git a/jpa/example/pom.xml b/jpa/example/pom.xml index f972a745..19764143 100644 --- a/jpa/example/pom.xml +++ b/jpa/example/pom.xml @@ -16,11 +16,6 @@ - - org.springframework - spring-aspects - - com.google.guava guava diff --git a/jpa/java8/pom.xml b/jpa/java8/pom.xml index 290764d0..1e6a5eb7 100644 --- a/jpa/java8/pom.xml +++ b/jpa/java8/pom.xml @@ -13,11 +13,6 @@ - - org.springframework - spring-aspects - - org.jadira.usertype usertype.extended @@ -26,4 +21,17 @@ + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.8 + 1.8 + + + + + \ No newline at end of file diff --git a/mongodb/pom.xml b/mongodb/pom.xml index e6e11c88..f631c66f 100644 --- a/mongodb/pom.xml +++ b/mongodb/pom.xml @@ -12,10 +12,6 @@ 1.0.0.BUILD-SNAPSHOT - - 1.5.0.RELEASE - - @@ -33,7 +29,7 @@ org.springframework.boot spring-boot-starter - + diff --git a/pom.xml b/pom.xml index 63867a61..a05b1680 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ org.springframework.boot spring-boot-starter-parent - 1.0.2.RELEASE + 1.1.0.RELEASE @@ -25,7 +25,6 @@ 1.1.1 3.3.4 - 4.0.5.RELEASE UTF-8 diff --git a/rest/starbucks/pom.xml b/rest/starbucks/pom.xml index 1b9bca5c..164ed57c 100644 --- a/rest/starbucks/pom.xml +++ b/rest/starbucks/pom.xml @@ -12,13 +12,6 @@ 1.0.0.BUILD-SNAPSHOT - - 2.12.1 - 1.5.0.RELEASE - 2.1.0.RELEASE - 0.12.0.RELEASE - - @@ -36,6 +29,13 @@ spring-batch-core + + com.jayway.jsonpath + json-path + 0.9.1 + runtime + + diff --git a/rest/starbucks/src/main/java/example/stores/StoreApp.java b/rest/starbucks/src/main/java/example/stores/StoreApp.java index 3b15cb8c..9bb387a7 100644 --- a/rest/starbucks/src/main/java/example/stores/StoreApp.java +++ b/rest/starbucks/src/main/java/example/stores/StoreApp.java @@ -18,8 +18,6 @@ package example.stores; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.context.annotation.ComponentScan; -import org.springframework.context.annotation.Import; -import org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration; /** * Spring configuration class main application bootstrap point. @@ -28,8 +26,6 @@ import org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguratio */ @EnableAutoConfiguration @ComponentScan -// Activates Spring Data REST -@Import(RepositoryRestMvcConfiguration.class) public class StoreApp { public static void main(String[] args) {