From 80b8c16d634a36de6d4278494b48df34b3ce85a7 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Mon, 16 May 2016 16:36:48 +0100 Subject: [PATCH] Fix dependency parent and versions See https://github.com/spring-cloud/spring-cloud-starters/issues/52 --- _includes/pom.xml | 2 +- js/projectDocumentationWidget.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/pom.xml b/_includes/pom.xml index e2a9547..8f33b2f 100644 --- a/_includes/pom.xml +++ b/_includes/pom.xml @@ -1,6 +1,6 @@ org.springframework.boot - spring-cloud-starter-parent + spring-boot-starter-parent {@= bootVersion @} diff --git a/js/projectDocumentationWidget.js b/js/projectDocumentationWidget.js index 7f5a0eb..a3b5b4d 100644 --- a/js/projectDocumentationWidget.js +++ b/js/projectDocumentationWidget.js @@ -151,7 +151,7 @@ Spring.SnippetView = Backbone.View.extend({ render: function () { - this.model.bootVersion = this.model.version.indexOf("Brixton")!=-1 ? "1.3.3.RELEASE" : "1.2.8.RELEASE"; + this.model.bootVersion = this.model.version.indexOf("Brixton")!=-1 ? "1.3.5.RELEASE" : "1.2.8.RELEASE"; console.log(JSON.stringify(this.model)) var html = $(this.combinedTemplate(this.model)); this.$el.html(html);