Added the gradle plugin SNAPSHOT version support for some tests.

`ImportAndCheckNavigation` and `GradleMultiplatformHighlightingTest` now
use the SNAPSHOT version of the gradle plugin also.
This commit is contained in:
Alexander Dudinsky
2020-07-15 18:57:21 +03:00
parent 80022cccd9
commit 27e7116f60
8 changed files with 18 additions and 57 deletions
@@ -1,9 +1,8 @@
plugins {
id 'kotlin-multiplatform' version '1.3.0'
id 'org.jetbrains.kotlin.multiplatform' version '{{kotlin_plugin_version}}'
}
repositories {
mavenCentral()
jcenter()
{{kotlin_plugin_repositories}}
}
kotlin {
targets {
@@ -1,18 +1,6 @@
pluginManagement {
resolutionStrategy {
eachPlugin {
if (requested.id.id == "kotlin-multiplatform") {
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
}
}
}
repositories {
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
jcenter()
{{kotlin_plugin_repositories}}
}
}
rootProject.name = 'first'