This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch ee11 in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 004396445da68fdb5b70b9cfe94e577890180215 Author: Markus Jung <[email protected]> AuthorDate: Wed Nov 5 18:01:38 2025 +0100 fix exmaples compilation --- examples/ejb-examples/pom.xml | 12 ++++++++++++ examples/ejb-webservice/pom.xml | 6 ++++++ examples/moviefun-rest/pom.xml | 6 ++++++ examples/mp-openapi-reader/pom.xml | 6 ++++++ examples/mp-rest-client/pom.xml | 6 ++++++ examples/pojo-webservice/pom.xml | 12 ++++++++++++ examples/rest-cdi/pom.xml | 6 ++++++ examples/rest-on-ejb/pom.xml | 6 ++++++ examples/rest-xml-json/pom.xml | 6 ++++++ examples/webservice-attachments/pom.xml | 18 ++++++++++++++++++ examples/webservice-ssl-client-cert/pom.xml | 6 ++++++ 11 files changed, 90 insertions(+) diff --git a/examples/ejb-examples/pom.xml b/examples/ejb-examples/pom.xml index d7b9d8d5ba..a7491c8da2 100644 --- a/examples/ejb-examples/pom.xml +++ b/examples/ejb-examples/pom.xml @@ -78,6 +78,18 @@ <version>11.0.0-SNAPSHOT</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.jws</groupId> + <artifactId>jakarta.jws-api</artifactId> + <version>3.0.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>jakarta.xml.ws</groupId> + <artifactId>jakarta.xml.ws-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> diff --git a/examples/ejb-webservice/pom.xml b/examples/ejb-webservice/pom.xml index f1bb81fc07..eb8231a7d7 100644 --- a/examples/ejb-webservice/pom.xml +++ b/examples/ejb-webservice/pom.xml @@ -69,6 +69,12 @@ <version>11.0.0-SNAPSHOT</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.jws</groupId> + <artifactId>jakarta.jws-api</artifactId> + <version>3.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> diff --git a/examples/moviefun-rest/pom.xml b/examples/moviefun-rest/pom.xml index ada7a7c969..717a623a83 100644 --- a/examples/moviefun-rest/pom.xml +++ b/examples/moviefun-rest/pom.xml @@ -137,6 +137,12 @@ <version>11.0.0-SNAPSHOT</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> diff --git a/examples/mp-openapi-reader/pom.xml b/examples/mp-openapi-reader/pom.xml index 5f8b704967..3ca1d27f11 100644 --- a/examples/mp-openapi-reader/pom.xml +++ b/examples/mp-openapi-reader/pom.xml @@ -37,6 +37,12 @@ <version>${version.jakartaee-api}</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.eclipse.microprofile.openapi</groupId> <artifactId>microprofile-openapi-api</artifactId> diff --git a/examples/mp-rest-client/pom.xml b/examples/mp-rest-client/pom.xml index 6c5e56b56a..d6405ab870 100644 --- a/examples/mp-rest-client/pom.xml +++ b/examples/mp-rest-client/pom.xml @@ -37,6 +37,12 @@ <version>${version.jakartaee-api}</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.eclipse.microprofile.rest.client</groupId> <artifactId>microprofile-rest-client-api</artifactId> diff --git a/examples/pojo-webservice/pom.xml b/examples/pojo-webservice/pom.xml index e13f9936df..f7e81ebc1c 100644 --- a/examples/pojo-webservice/pom.xml +++ b/examples/pojo-webservice/pom.xml @@ -82,6 +82,18 @@ <version>11.0.0-SNAPSHOT</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.xml.ws</groupId> + <artifactId>jakarta.xml.ws-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>jakarta.jws</groupId> + <artifactId>jakarta.jws-api</artifactId> + <version>3.0.0</version> + <scope>provided</scope> + </dependency> </dependencies> <!-- This section allows you to configure where to publish libraries for sharing. diff --git a/examples/rest-cdi/pom.xml b/examples/rest-cdi/pom.xml index 2d1dcc5400..ee69285032 100644 --- a/examples/rest-cdi/pom.xml +++ b/examples/rest-cdi/pom.xml @@ -54,6 +54,12 @@ <version>11.0.0-SNAPSHOT</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> diff --git a/examples/rest-on-ejb/pom.xml b/examples/rest-on-ejb/pom.xml index 55191a5be6..4ac5b019c9 100644 --- a/examples/rest-on-ejb/pom.xml +++ b/examples/rest-on-ejb/pom.xml @@ -65,6 +65,12 @@ <version>11.0.0-SNAPSHOT</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> diff --git a/examples/rest-xml-json/pom.xml b/examples/rest-xml-json/pom.xml index c286f646f7..308f3a74b1 100644 --- a/examples/rest-xml-json/pom.xml +++ b/examples/rest-xml-json/pom.xml @@ -58,6 +58,12 @@ <version>11.0.0-SNAPSHOT</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> diff --git a/examples/webservice-attachments/pom.xml b/examples/webservice-attachments/pom.xml index b9b9ca5eb7..215d8df7f8 100644 --- a/examples/webservice-attachments/pom.xml +++ b/examples/webservice-attachments/pom.xml @@ -55,6 +55,24 @@ <artifactId>jakartaee-api</artifactId> <version>11.0.0-SNAPSHOT</version> </dependency> + <dependency> + <groupId>jakarta.xml.ws</groupId> + <artifactId>jakarta.xml.ws-api</artifactId> + <version>4.0.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>jakarta.jws</groupId> + <artifactId>jakarta.jws-api</artifactId> + <version>3.0.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>jakarta.xml.soap</groupId> + <artifactId>jakarta.xml.soap-api</artifactId> + <version>3.0.0</version> + <scope>provided</scope> + </dependency> <!-- The <scope>test</scope> guarantees that non of your runtime code is dependent on any OpenEJB classes. diff --git a/examples/webservice-ssl-client-cert/pom.xml b/examples/webservice-ssl-client-cert/pom.xml index d89de0defe..231f4135af 100644 --- a/examples/webservice-ssl-client-cert/pom.xml +++ b/examples/webservice-ssl-client-cert/pom.xml @@ -74,6 +74,12 @@ <artifactId>jakartaee-api</artifactId> <version>11.0.0-SNAPSHOT</version> </dependency> + <dependency> + <groupId>jakarta.jws</groupId> + <artifactId>jakarta.jws-api</artifactId> + <version>3.0.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId>
