diff --git a/pom.xml b/pom.xml index d10883523c81..8c37dfeec453 100644 --- a/pom.xml +++ b/pom.xml @@ -453,7 +453,7 @@ 7.6.1.Final 1.0.3.Final - 14.0.0.Final + 15.1.0.Alpha1 2.0.1.Final 5.12.5.Final 8.1.9.Final diff --git a/undertow/src/main/java/org/wildfly/extension/undertow/deployment/WebParsingDeploymentProcessor.java b/undertow/src/main/java/org/wildfly/extension/undertow/deployment/WebParsingDeploymentProcessor.java index 90b16920ad23..586e62c8bb01 100644 --- a/undertow/src/main/java/org/wildfly/extension/undertow/deployment/WebParsingDeploymentProcessor.java +++ b/undertow/src/main/java/org/wildfly/extension/undertow/deployment/WebParsingDeploymentProcessor.java @@ -115,6 +115,8 @@ else if (webMetaData.getVersion() != null && webMetaData.getVersion().equals("4. validator.validate("http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd", xmlInput); else if (webMetaData.getVersion() != null && webMetaData.getVersion().equals("5.0")) validator.validate("https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd", xmlInput); + else if (webMetaData.getVersion() != null && webMetaData.getVersion().equals("6.0")) + validator.validate("https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd", xmlInput); else validator.validate("-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN", xmlInput); } catch (SAXException e) {