From f07f23ec85e7654346087b11cdd0f8268c791d5e Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 6 Oct 2015 16:49:07 +0100 Subject: [PATCH] Update versions of various dependencies --- build.gradle | 10 +++++----- samples/rest-notes-spring-data-rest/pom.xml | 2 +- samples/rest-notes-spring-hateoas/build.gradle | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index ac4c5afa..35db2d4e 100644 --- a/build.gradle +++ b/build.gradle @@ -56,18 +56,18 @@ subprojects { mavenBom "org.springframework:spring-framework-bom:$springVersion" } dependencies { - dependency 'com.fasterxml.jackson.core:jackson-databind:2.4.6' - dependency 'com.samskivert:jmustache:1.10' + dependency 'com.fasterxml.jackson.core:jackson-databind:2.4.6.1' + dependency 'com.samskivert:jmustache:1.11' dependency 'commons-codec:commons-codec:1.10' dependency 'javax.servlet:javax.servlet-api:3.1.0' dependency 'javax.validation:validation-api:1.1.0.Final' dependency 'junit:junit:4.12' dependency 'org.hamcrest:hamcrest-core:1.3' dependency 'org.hamcrest:hamcrest-library:1.3' - dependency 'org.hibernate:hibernate-validator:5.2.1.Final' + dependency 'org.hibernate:hibernate-validator:5.2.2.Final' dependency 'org.mockito:mockito-core:1.10.19' - dependency 'org.springframework.hateoas:spring-hateoas:0.17.0.RELEASE' - dependency 'org.jacoco:org.jacoco.agent:0.7.2.201409121644' + dependency 'org.springframework.hateoas:spring-hateoas:0.19.0.RELEASE' + dependency 'org.jacoco:org.jacoco.agent:0.7.5.201505241946' } } diff --git a/samples/rest-notes-spring-data-rest/pom.xml b/samples/rest-notes-spring-data-rest/pom.xml index ad8688f2..020030dc 100644 --- a/samples/rest-notes-spring-data-rest/pom.xml +++ b/samples/rest-notes-spring-data-rest/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 1.2.5.RELEASE + 1.2.6.RELEASE diff --git a/samples/rest-notes-spring-hateoas/build.gradle b/samples/rest-notes-spring-hateoas/build.gradle index f6c8ca4a..22a2e03e 100644 --- a/samples/rest-notes-spring-hateoas/build.gradle +++ b/samples/rest-notes-spring-hateoas/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.2.5.RELEASE' + classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.2.6.RELEASE' } } @@ -36,7 +36,7 @@ dependencies { compile 'org.springframework.boot:spring-boot-starter-hateoas' runtime 'com.h2database:h2' - runtime 'org.atteo:evo-inflector:1.2' + runtime 'org.atteo:evo-inflector:1.2.1' testCompile 'com.jayway.jsonpath:json-path' testCompile 'org.springframework.boot:spring-boot-starter-test'