Skip to content

Commit

Permalink
issue #94: Use of BOMs results in spurious warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
siordache committed Oct 19, 2021
1 parent 46535af commit 6fd3d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/org/beryx/runtime/util/Util.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Util {
static File getArtifact(ResolvedDependency dep) {
def artifact = dep.moduleArtifacts.find {it.classifier} ?: dep.moduleArtifacts?.getAt(0)
if(artifact) return artifact.file
LOGGER.warn "Cannot retrieve artifact $dep.name"
LOGGER.info "Cannot retrieve artifact $dep.name"
return null
}

Expand Down

0 comments on commit 6fd3d64

Please sign in to comment.