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
commit 18483c5c8f045f3d6f3c7862d715042b8d1075cc Author: Andreas Veithen <[email protected]> AuthorDate: Sat Oct 28 17:44:36 2023 +0000 AXIOM-506: Fix the apidocs module Make it generate Javadoc for the Jakarta versions of Axiom code. --- apidocs/pom.xml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/apidocs/pom.xml b/apidocs/pom.xml index c04bde754..15bea3485 100644 --- a/apidocs/pom.xml +++ b/apidocs/pom.xml @@ -41,25 +41,21 @@ <artifactId>axiom-api</artifactId> <version>${project.version}</version> </dependency> - <!-- AXIOM-506 This breaks in the commit to switch to jakarta <dependency> <groupId>${project.groupId}</groupId> <artifactId>axiom-jakarta-activation</artifactId> <version>${project.version}</version> </dependency> - --> <dependency> <groupId>${project.groupId}</groupId> - <artifactId>axiom-javax-jaxb</artifactId> + <artifactId>axiom-jakarta-jaxb</artifactId> <version>${project.version}</version> </dependency> - <!-- AXIOM-506 This breaks in the commit to switch to jakarta <dependency> <groupId>${project.groupId}</groupId> <artifactId>axiom-legacy-attachments</artifactId> <version>${project.version}</version> </dependency> - --> <!-- These are artifacts that are optional/provided dependencies of the above artifacts. We need them to process the sources. --> <dependency> @@ -77,11 +73,6 @@ <artifactId>stax2-api</artifactId> <scope>provided</scope> </dependency> - <dependency> - <groupId>jakarta.activation</groupId> - <artifactId>jakarta.activation-api</artifactId> - <version>1.2.2</version> - </dependency> </dependencies> <build>
