Wizard: update Kotlin version for tests to dev one

Needed for support latest syntax of Gradle dsl for js
This commit is contained in:
Ilya Kirillov
2020-04-09 15:26:36 +03:00
parent 9badcae692
commit 4e91f1c607
117 changed files with 720 additions and 109 deletions
@@ -1,11 +1,14 @@
plugins {
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
}
group = 'testGroupId'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/kotlin/kotlin-dev'
}
}
kotlin {
jvm {
@@ -1,11 +1,14 @@
plugins {
kotlin("multiplatform") version "1.3.70"
kotlin("multiplatform") version "KOTLIN_VERSION"
}
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
}
}
kotlin {
jvm {
@@ -1 +1,10 @@
pluginManagement {
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/kotlin/kotlin-dev'
}
}
}
rootProject.name = 'generatedProject'
@@ -1 +1,10 @@
pluginManagement {
repositories {
mavenCentral()
maven {
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
}
}
}
rootProject.name = "generatedProject"