Remove illegal dependsOn edges in MPP tests

Those dependsOn edges were not used in any way, and not assertion
checked for them. They are illegal according to KPM design, and
we generally consider such a setup unsupported with the stable MPP
plugin, too.
This commit is contained in:
Sergey Igushkin
2022-02-01 01:11:40 +04:00
committed by Space
parent 388cb96055
commit f19e65f2d4
3 changed files with 0 additions and 3 deletions
@@ -79,7 +79,6 @@ apply plugin: 'maven-publish'
afterEvaluate {
kotlin {
jvm('jvm6').compilations.create('benchmark') {
defaultSourceSet.dependsOn(sourceSets.jvm6Main)
assemble.dependsOn compileKotlinTask
}
}
@@ -55,7 +55,6 @@ publishing {
afterEvaluate {
kotlin {
jvm("jvm6").compilations.create("benchmark") {
defaultSourceSet.dependsOn(sourceSets["jvm6Main"])
tasks["assemble"].dependsOn(compileKotlinTask)
}
}
@@ -103,7 +103,6 @@ publishing {
afterEvaluate {
kotlin {
jvm('jvm6').compilations.create('benchmark') {
defaultSourceSet.dependsOn(sourceSets.jvm6Main)
assemble.dependsOn compileKotlinTask
}
}