Wizard: update Kotlin version for tests to dev one
Needed for support latest syntax of Gradle dsl for js
This commit is contained in:
+4
-1
@@ -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 {
|
||||
|
||||
+4
-1
@@ -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 {
|
||||
|
||||
+9
@@ -1 +1,10 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven {
|
||||
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
rootProject.name = 'generatedProject'
|
||||
+9
@@ -1 +1,10 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven {
|
||||
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
rootProject.name = "generatedProject"
|
||||
Reference in New Issue
Block a user