This is an automated email from the ASF dual-hosted git repository.
cstamas pushed a commit to branch maven-resolver-1.9.x
in repository https://gitbox.apache.org/repos/asf/maven-resolver.git
The following commit(s) were added to refs/heads/maven-resolver-1.9.x by this
push:
new 66551607 [1.9.x] Tame bnd plugin warnings (#524)
66551607 is described below
commit 665516073ff613b6e38e08a69d58b2c4ed92d3cd
Author: Tamas Cservenak <[email protected]>
AuthorDate: Mon Jul 1 23:58:50 2024 +0200
[1.9.x] Tame bnd plugin warnings (#524)
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 274f548c..5ff7a011 100644
--- a/pom.xml
+++ b/pom.xml
@@ -489,6 +489,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
]]></bnd>
</configuration>
</plugin>