Skip to content

Commit

Permalink
Disable transitive dependencies of vanilla dependencies
Browse files Browse the repository at this point in the history
The tree is already flattened
  • Loading branch information
jpenilla committed Dec 5, 2024
1 parent 459abae commit 8d474cb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ fun Project.setupServerProject(
val libs = libsFile.convertToPathOrNull()
if (libs != null && libs.exists()) {
libs.forEachLine { line ->
add(create(line))
add(create(line) {
isTransitive = false
})
}
}
}
Expand Down

0 comments on commit 8d474cb

Please sign in to comment.