Upgrade to Kotlin 1.2.20

This commits upgrade to Kotlin 1.2.20 and uses the new stdlib artifact
names. As a result, 2.0  milestones prior to Spring Boot 2.0.0.RC1 are
no longer supported.

Closes gh-576
This commit is contained in:
Stephane Nicoll
2018-02-01 11:24:22 +01:00
parent 18ef480a23
commit 1d9a68d6fc
15 changed files with 18 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2017 the original author or authors.
* Copyright 2012-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -192,7 +192,7 @@ public class ProjectGenerationSmokeTests
projectAssert.hasBaseDir("demo").isMavenProject().isKotlinProject()
.hasStaticAndTemplatesResources(false).pomAssert().hasDependenciesCount(4)
.hasSpringBootStarterRootDependency().hasSpringBootStarterTest()
.hasDependency("org.jetbrains.kotlin", "kotlin-stdlib-jre8")
.hasDependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk8")
.hasDependency("org.jetbrains.kotlin", "kotlin-reflect");
}