From: Mathieu Baudier Date: Thu, 14 Sep 2023 04:49:31 +0000 (+0200) Subject: Do not compile bundles without sources X-Git-Tag: v2.3.8~19 X-Git-Url: https://git.argeo.org/?p=cc0%2Fargeo-build.git;a=commitdiff_plain;h=4bbff43fd6fdc22e1f5083f667b773be8e82d544 Do not compile bundles without sources --- diff --git a/src/org/argeo/build/Make.java b/src/org/argeo/build/Make.java index af62406..ca5fc8e 100644 --- a/src/org/argeo/build/Make.java +++ b/src/org/argeo/build/Make.java @@ -241,7 +241,7 @@ public class Make { } Path bundleSrc = bundlePath.resolve("src"); if (!Files.exists(bundleSrc)) { - logger.log(TRACE, bundleSrc + " does not exist, skipping it, as this is not a Java bundle"); + logger.log(WARNING, bundleSrc + " does not exist, skipping it, as this is not a Java bundle"); continue bundles; } sb.append(bundleSrc);