Generate new Gradle dependency directives when is version above 3.4 (KT-22571)

^KT-22571 Fixed
This commit is contained in:
Nikolay Krasko
2018-11-22 18:05:02 +03:00
parent 7aa195b017
commit e4da6c268a
41 changed files with 113 additions and 59 deletions
@@ -17,7 +17,7 @@ repositories {
dependencies {
testCompile("junit:junit:4.12")
compile(kotlin("stdlib-jre8"))
implementation(kotlin("stdlib-jre8"))
}
// VERSION: $VERSION$
@@ -16,7 +16,7 @@ repositories {
dependencies {
testCompile("junit:junit:4.12")
compile(kotlin("stdlib"))
implementation(kotlin("stdlib"))
}
// VERSION: $VERSION$
@@ -16,7 +16,7 @@ repositories {
dependencies {
testCompile("junit:junit:4.12")
compile(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib-jdk8"))
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
@@ -30,7 +30,7 @@ repositories {
dependencies {
testCompile("junit:junit:4.12")
compile(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib-jdk8"))
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
@@ -20,7 +20,7 @@ repositories {
dependencies {
testCompile("junit:junit:4.12")
compile(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib-jdk8"))
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {