Skip to content

Commit 6fd3d64

Browse files
committed
issue #94: Use of BOMs results in spurious warnings
1 parent 46535af commit 6fd3d64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/org/beryx/runtime/util/Util.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class Util {
7979
static File getArtifact(ResolvedDependency dep) {
8080
def artifact = dep.moduleArtifacts.find {it.classifier} ?: dep.moduleArtifacts?.getAt(0)
8181
if(artifact) return artifact.file
82-
LOGGER.warn "Cannot retrieve artifact $dep.name"
82+
LOGGER.info "Cannot retrieve artifact $dep.name"
8383
return null
8484
}
8585

0 commit comments

Comments
 (0)