Skip to content

Commit

Permalink
disable transitive on include configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
deirn committed Apr 28, 2024
1 parent c83b33f commit efe2ecc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,10 @@ afterEvaluate {
subprojects.forEach {
dependencies {
implementation(project(path = it.path, configuration = "namedElements"))
include(it)

include(project(it.path)) {
isTransitive = false
}
}

sourceSets {
Expand Down

0 comments on commit efe2ecc

Please sign in to comment.