This commit eliminates the 'integration-tests' subproject in favor of managing these sources under the root project's own 'src' directory. This helps to avoid special-case handling for integration-tests in the Gradle build, e.g. avoiding publication of jars to Artifactory / Maven Central. It is also semantically more correct. This is not a Spring Framework subproject so much as it is a collection of integration tests that span functionality across many subprojects. In this way, it makes sense to place them directly under the root project. Issue: SPR-8116
33 lines
827 B
XML
33 lines
827 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
|
|
|
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
|
|
|
|
<!-- Appenders -->
|
|
<appender name="console" class="org.apache.log4j.ConsoleAppender">
|
|
<param name="Target" value="System.out" />
|
|
<layout class="org.apache.log4j.PatternLayout">
|
|
<param name="ConversionPattern" value="%-5p: %c - %m%n" />
|
|
</layout>
|
|
</appender>
|
|
|
|
<logger name="org.springframework.beans">
|
|
<level value="warn" />
|
|
</logger>
|
|
|
|
<logger name="org.springframework.beans.factory.xml.XmlBeanFactory">
|
|
<level value="error" />
|
|
</logger>
|
|
|
|
<logger name="org.springframework.binding">
|
|
<level value="debug" />
|
|
</logger>
|
|
|
|
<!-- Root Logger -->
|
|
<root>
|
|
<priority value="warn" />
|
|
<appender-ref ref="console" />
|
|
</root>
|
|
|
|
</log4j:configuration>
|