From 6fd3d642c01d156d2992d28664eab246bad76e9c Mon Sep 17 00:00:00 2001 From: Serban Iordache Date: Tue, 19 Oct 2021 23:49:10 +0200 Subject: [PATCH] issue #94: Use of BOMs results in spurious warnings --- src/main/groovy/org/beryx/runtime/util/Util.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/groovy/org/beryx/runtime/util/Util.groovy b/src/main/groovy/org/beryx/runtime/util/Util.groovy index d4629c8..2d552c0 100644 --- a/src/main/groovy/org/beryx/runtime/util/Util.groovy +++ b/src/main/groovy/org/beryx/runtime/util/Util.groovy @@ -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 }