From 8642ee32dac140cfec1acc79e5b9f4a585748711 Mon Sep 17 00:00:00 2001 From: Tamas Cservenak Date: Mon, 1 Jul 2024 17:01:21 +0200 Subject: [PATCH 1/2] Tame bnd plugin warnings To keep things simple, we config the plugin in one place, but in some modules this config emits warnings. This change just makes it go away. No other source or any alike change, no issue either. --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index cdc694348..272c869c9 100644 --- a/pom.xml +++ b/pom.xml @@ -624,6 +624,10 @@ # Reproducible build -noextraheaders: true ${bnd.instructions.additions} + # Remove warnings (as we keep things simple) + -fixupmessages: \\ + 'Unused Import-Package instructions';is:=ignore,\\ + 'Unused Export-Package instructions';is:=ignore,\\ ]]> From bbedbd9333b0218434736e71e5dfde228d244383 Mon Sep 17 00:00:00 2001 From: Guillaume Nodet Date: Mon, 1 Jul 2024 17:13:43 +0200 Subject: [PATCH 2/2] Update pom.xml Fix instructions to use same syntax --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 272c869c9..8e24f4638 100644 --- a/pom.xml +++ b/pom.xml @@ -625,9 +625,9 @@ -noextraheaders: true ${bnd.instructions.additions} # Remove warnings (as we keep things simple) - -fixupmessages: \\ - 'Unused Import-Package instructions';is:=ignore,\\ - 'Unused Export-Package instructions';is:=ignore,\\ + -fixupmessages: \ + 'Unused Import-Package instructions';is:=ignore, \ + 'Unused Export-Package instructions';is:=ignore ]]>