Fix dependency parent and versions

See https://github.com/spring-cloud/spring-cloud-starters/issues/52
This commit is contained in:
Dave Syer
2016-05-16 16:36:48 +01:00
parent 18ed71f7bc
commit 80b8c16d63
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>{@= bootVersion @}</version>
</parent>
<dependencyManagement>

View File

@@ -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);