From 1606f4d912671202fea32a0cbd81add6a047290a Mon Sep 17 00:00:00 2001 From: srosse <stephane.rosse@frentix.com> Date: Thu, 2 May 2019 20:58:09 +0200 Subject: [PATCH] no-jira: add javax.xml.ws API to start OpenOLAT with Java 11 --- pom.xml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5acbf5a51bc..2610b2eb3ec 100644 --- a/pom.xml +++ b/pom.xml @@ -388,7 +388,7 @@ <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> - <!-- Jersey for tomcat --> + <!-- Apache CXF for tomcat --> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> @@ -409,6 +409,11 @@ <artifactId>cxf-rt-rs-http-sci</artifactId> <version>${apache.cxf}</version> </dependency> + <dependency> + <groupId>javax.xml.ws</groupId> + <artifactId>jaxws-api</artifactId> + <version>2.3.1</version> + </dependency> <dependency> <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> @@ -2154,6 +2159,12 @@ <version>1.1.1</version> <scope>test</scope> </dependency> + <dependency> + <groupId>javax.xml.ws</groupId> + <artifactId>jaxws-api</artifactId> + <version>2.3.1</version> + <scope>test</scope> + </dependency> <!-- core dependencies --> <dependency> <groupId>net.sourceforge.nekohtml</groupId> -- GitLab