Changed gradle-plugin version in Gradle tests.

When 6.5.1 Gradle version was added, more tests have began to fail
because of legacy gradle-plugin versions (1.1., 1.2.) which are not
compatible with the new version of Gradle. This commit updates the used
version of the Gradle plugin to the latest stable (1.3.72) and makes it
configurable from tests.
This commit is contained in:
Alexander Dudinsky
2020-08-04 12:57:40 +03:00
parent 6652a7072c
commit 05d6217f78
68 changed files with 252 additions and 111 deletions
@@ -11,9 +11,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
{{kotlin_plugin_repositories}}
}
}
@@ -6,6 +6,11 @@ buildscript {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:{{kotlin_plugin_version}}")
}
}
repositories {
{{kotlin_plugin_repositories}}
}
apply plugin: 'kotlin-multiplatform'
group 'com.example'
@@ -1,6 +1,4 @@
include('mpp-base')
include('mpp')
include('jvm')
enableFeaturePreview('STABLE_PUBLISHING')
include('jvm')