This is an automated email from the ASF dual-hosted git repository. veithen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push: new afb4bb0d6 Fix missing exported package in axiom-legacy-attachments afb4bb0d6 is described below commit afb4bb0d63dd28c589f333b8bddaff67326ac89c Author: Andreas Veithen <andreas.veit...@gmail.com> AuthorDate: Tue Nov 15 08:58:28 2022 +0000 Fix missing exported package in axiom-legacy-attachments --- axiom-legacy-attachments/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/axiom-legacy-attachments/pom.xml b/axiom-legacy-attachments/pom.xml index 8183903fa..6ef44084c 100644 --- a/axiom-legacy-attachments/pom.xml +++ b/axiom-legacy-attachments/pom.xml @@ -110,6 +110,14 @@ <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package> + <!-- Ensure the impl package is exported. --> + org.apache.axiom.attachments.* + </Export-Package> + </instructions> + </configuration> </plugin> </plugins> </build>