You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The infra plugin adds the following dependsOn edges:
nativeMain.dependsOn(commonMain)
nativeTest.dependsOn(commonTest)
even if the plugin is applied to a project with the default target hierarchy. This leads to a warning during the configuration phase of the Gradle project.
The warning is:
w: Redundant dependsOn edges between Kotlin Source Sets found.
Please remove the following dependsOn invocations from your build scripts:
* nativeMain.dependsOn(commonMain)
* nativeTest.dependsOn(commonTest)
* jvmMain.dependsOn(commonMain)
They are already added from Kotlin Target Hierarchy template https://kotl.in/hierarchy-template
Warning for the native source sets is still reported because of
Kotlin/kotlinx.team.infra#25
qurbonzoda
pushed a commit
to Kotlin/kotlinx-benchmark
that referenced
this issue
Sep 2, 2024
The warning is:
w: Redundant dependsOn edges between Kotlin Source Sets found.
Please remove the following dependsOn invocations from your build scripts:
* nativeMain.dependsOn(commonMain)
* nativeTest.dependsOn(commonTest)
* jvmMain.dependsOn(commonMain)
They are already added from Kotlin Target Hierarchy template https://kotl.in/hierarchy-template
Warning for the native source sets is still reported because of
Kotlin/kotlinx.team.infra#25
qurbonzoda
pushed a commit
to Kotlin/kotlinx-benchmark
that referenced
this issue
Sep 2, 2024
The warning is:
w: Redundant dependsOn edges between Kotlin Source Sets found.
Please remove the following dependsOn invocations from your build scripts:
* nativeMain.dependsOn(commonMain)
* nativeTest.dependsOn(commonTest)
* jvmMain.dependsOn(commonMain)
They are already added from Kotlin Target Hierarchy template https://kotl.in/hierarchy-template
Warning for the native source sets is still reported because of
Kotlin/kotlinx.team.infra#25
The infra plugin adds the following
dependsOn
edges:even if the plugin is applied to a project with the default target hierarchy. This leads to a warning during the configuration phase of the Gradle project.
The dependsOn edges are added here: https://github.com/Kotlin/kotlinx.team.infra/blob/master/main/src/kotlinx/team/infra/NativeMultiplatform.kt#L51-L52
Note that they are added even if a project does not set up its native targets using the infra plugin.
The text was updated successfully, but these errors were encountered: