Skip to content

Commit

Permalink
fix: use all resolvers to download BOM instead of only the added reso…
Browse files Browse the repository at this point in the history
…lvers (#15)

Signed-off-by: Gaël Jourdan-Weil <[email protected]>
  • Loading branch information
gaeljw authored Feb 15, 2024
1 parent 1077445 commit 3051b19
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin/src/main/scala/com/here/bom/Bom.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ object Bom {
key := {
val logger = (update / sLog).value
val ivyConfig = InlineIvyConfiguration()
.withResolvers((update / resolvers).value.to)
.withResolvers(
((update / resolvers).value ++ (update / appResolvers).value.getOrElse(Seq.empty)).to
)
.withUpdateOptions((update / updateOptions).value)
loadCredentials(logger)
val depRes = new DependencyResolutionProxy(IvyDependencyResolution(ivyConfig))
Expand Down

0 comments on commit 3051b19

Please sign in to comment.