rsearls commented on a change in pull request #45: URL: https://github.com/apache/ws-wss4j/pull/45#discussion_r819073760
########## File path: parent/pom.xml ########## @@ -56,10 +56,29 @@ <wss4j.osgi.export>org.apache.wss4j.*</wss4j.osgi.export> <wss4j.osgi.dynamic.import /> <wss4j.manifest.location>${project.build.outputDirectory}/META-INF/MANIFEST.MF</wss4j.manifest.location> + <jakarta.xml.bind-api.version>3.0.1</jakarta.xml.bind-api.version> + <jakarta.xml.soap-api.version>2.0.1</jakarta.xml.soap-api.version> + <jakarta.mail.version>2.0.0</jakarta.mail.version> + <jaxb-runtime.version>3.0.2</jaxb-runtime.version> </properties> <dependencyManagement> <dependencies> + <dependency> + <groupId>com.sun.mail</groupId> + <artifactId>jakarta.mail</artifactId> + <version>${jakarta.mail.version}</version> + </dependency> + <dependency> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> + <version>${jakarta.xml.bind-api.version}</version> + </dependency> + <dependency> + <groupId>jakarta.xml.soap</groupId> + <artifactId>jakarta.xml.soap-api</artifactId> + <version>${jakarta.xml.soap-api.version}</version> + </dependency> Review comment: org.glassfish.jaxb:jaxb-runtime can not be removed from ws-security-stax/pom.xml it is required for KerberosTest.java to run successfully. All other changes are complete. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ws.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@ws.apache.org For additional commands, e-mail: dev-h...@ws.apache.org