This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push:
new eef2ba846 Set up logging for MTOMTest
eef2ba846 is described below
commit eef2ba84650496d1c896dd75c8c66c4784ab614f
Author: Andreas Veithen-Knowles <[email protected]>
AuthorDate: Sun Jan 4 21:48:26 2026 +0000
Set up logging for MTOMTest
---
systests/jaxws-tests/pom.xml | 15 +++++++++++
.../jaxws-tests/src/test/resources/log4j2-test.xml | 31 ++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/systests/jaxws-tests/pom.xml b/systests/jaxws-tests/pom.xml
index dcb271d99..d7e04b732 100644
--- a/systests/jaxws-tests/pom.xml
+++ b/systests/jaxws-tests/pom.xml
@@ -77,6 +77,21 @@
<artifactId>jetty-ee10-webapp</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-jcl</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-slf4j2-impl</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
diff --git a/systests/jaxws-tests/src/test/resources/log4j2-test.xml
b/systests/jaxws-tests/src/test/resources/log4j2-test.xml
new file mode 100644
index 000000000..813a1733c
--- /dev/null
+++ b/systests/jaxws-tests/src/test/resources/log4j2-test.xml
@@ -0,0 +1,31 @@
+<?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.
+ -->
+<Configuration>
+ <Appenders>
+ <Console name="stdout" target="SYSTEM_OUT">
+ <PatternLayout pattern="%-6r %-5p %-8t [%c{1}] %m%n"/>
+ </Console>
+ </Appenders>
+ <Loggers>
+ <Root level="warn">
+ <AppenderRef ref="stdout"/>
+ </Root>
+ </Loggers>
+</Configuration>
\ No newline at end of file