This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch jakarta in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit fe62e609bf009e6a96e0bc432eb5d7231ca6176f Author: Juergen Weber <[email protected]> AuthorDate: Wed Apr 16 21:04:37 2025 +0200 add jboss-deployment-structure.xml --- .../webapp/WEB-INF/jboss-deployment-structure.xml | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/jspwiki-war/src/main/webapp/WEB-INF/jboss-deployment-structure.xml b/jspwiki-war/src/main/webapp/WEB-INF/jboss-deployment-structure.xml new file mode 100644 index 000000000..f6a483e20 --- /dev/null +++ b/jspwiki-war/src/main/webapp/WEB-INF/jboss-deployment-structure.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> +<!-- + make JSPWiki's log4j coexist with Wildfly's +--> +<jboss-deployment-structure> + <deployment> + + <dependencies> + <module name="org.jboss.logmanager" /> + </dependencies> + + <exclusions> + <module name="org.apache.logging.log4j.api" /> + </exclusions> + </deployment> +</jboss-deployment-structure> +
