Skip to content

Commit

Permalink
fix: use module, not full coordinates.
Browse files Browse the repository at this point in the history
  • Loading branch information
autonomousapps committed Jul 23, 2024
1 parent 0d76155 commit a275540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/autonomousapps/extension/Issue.kt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ open class Issue @Inject constructor(
* tells the plugin to exclude those dependencies in the final advice.
*/
fun exclude(vararg ignore: Provider<MinimalExternalModuleDependency>) {
exclude(*ignore.map { it.get().toString() }.toTypedArray())
exclude(*ignore.map { it.get().module.toString() }.toTypedArray())
}

/**
Expand Down

0 comments on commit a275540

Please sign in to comment.