From 88d3e72ae94e38fb927cec000d39b78af0af5a9f Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 9 Dec 2015 10:48:56 +0000 Subject: [PATCH 1/3] Upgrade to Spring Framework 4.1.8.RELEASE --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 593cde25..8785ee21 100644 --- a/build.gradle +++ b/build.gradle @@ -32,7 +32,7 @@ sonarRunner { } ext { - springVersion = '4.1.7.RELEASE' + springVersion = '4.1.8.RELEASE' javadocLinks = [ 'http://docs.oracle.com/javase/8/docs/api/', "http://docs.spring.io/spring-framework/docs/$springVersion/javadoc-api/", From 939769db110505888338a124a4788cd5f5569d50 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 9 Dec 2015 10:50:20 +0000 Subject: [PATCH 2/3] Upgrade the samples to Spring Boot 1.2.7.RELEASE --- samples/rest-notes-spring-data-rest/pom.xml | 2 +- samples/rest-notes-spring-hateoas/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/rest-notes-spring-data-rest/pom.xml b/samples/rest-notes-spring-data-rest/pom.xml index aa6384b6..36aa3ae7 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.6.RELEASE + 1.2.7.RELEASE diff --git a/samples/rest-notes-spring-hateoas/build.gradle b/samples/rest-notes-spring-hateoas/build.gradle index 8dfb61e8..8e7bd07d 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.6.RELEASE' + classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.2.7.RELEASE' } } From f6f4b77331d438b7f6b8b715c96265584f951299 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 9 Dec 2015 10:52:19 +0000 Subject: [PATCH 3/3] Upgrade the samples to use the latest Asciidoctor plugins --- samples/rest-notes-spring-data-rest/pom.xml | 2 +- samples/rest-notes-spring-hateoas/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/rest-notes-spring-data-rest/pom.xml b/samples/rest-notes-spring-data-rest/pom.xml index 36aa3ae7..223ebdfc 100644 --- a/samples/rest-notes-spring-data-rest/pom.xml +++ b/samples/rest-notes-spring-data-rest/pom.xml @@ -73,7 +73,7 @@ org.asciidoctor asciidoctor-maven-plugin - 1.5.2 + 1.5.2.1 generate-docs diff --git a/samples/rest-notes-spring-hateoas/build.gradle b/samples/rest-notes-spring-hateoas/build.gradle index 8e7bd07d..1f05c541 100644 --- a/samples/rest-notes-spring-hateoas/build.gradle +++ b/samples/rest-notes-spring-hateoas/build.gradle @@ -8,7 +8,7 @@ buildscript { } plugins { - id "org.asciidoctor.convert" version "1.5.2" + id "org.asciidoctor.convert" version "1.5.3" } apply plugin: 'java'