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:
+1
-3
@@ -11,9 +11,7 @@ buildscript {
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
|
||||
{{kotlin_plugin_repositories}}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+5
@@ -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
-3
@@ -1,6 +1,4 @@
|
||||
|
||||
include('mpp-base')
|
||||
include('mpp')
|
||||
include('jvm')
|
||||
|
||||
enableFeaturePreview('STABLE_PUBLISHING')
|
||||
include('jvm')
|
||||
Reference in New Issue
Block a user