Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redundant dependsOn edges between Kotlin Source Sets when default hierarchy is applied #25

Closed
qurbonzoda opened this issue Aug 24, 2024 · 0 comments

Comments

@qurbonzoda
Copy link
Contributor

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 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.

qurbonzoda pushed a commit to Kotlin/kotlinx-benchmark that referenced this issue Aug 26, 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
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
@fzhinkin fzhinkin closed this as not planned Won't fix, can't repro, duplicate, stale Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants