Author: jukka
Date: Thu Jan 30 15:57:27 2014
New Revision: 1562869
URL: http://svn.apache.org/r1562869
Log:
Direct MongoDB connection warnings to the normal test log file
Added:
jackrabbit/oak/trunk/oak-core/src/test/resources/logging.properties (with
props)
Modified:
jackrabbit/oak/trunk/oak-core/pom.xml
Modified: jackrabbit/oak/trunk/oak-core/pom.xml
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/pom.xml?rev=1562869&r1=1562868&r2=1562869&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-core/pom.xml Thu Jan 30 15:57:27 2014
@@ -130,6 +130,16 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <configuration>
+ <systemPropertyVariables>
+ <java.util.logging.config.file>
+ src/test/resources/logging.properties
+ </java.util.logging.config.file>
+ </systemPropertyVariables>
+ </configuration>
+ </plugin>
</plugins>
<pluginManagement>
<plugins>
@@ -284,6 +294,11 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jul-to-slf4j</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
Added: jackrabbit/oak/trunk/oak-core/src/test/resources/logging.properties
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/test/resources/logging.properties?rev=1562869&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/test/resources/logging.properties (added)
+++ jackrabbit/oak/trunk/oak-core/src/test/resources/logging.properties Thu Jan
30 15:57:27 2014
@@ -0,0 +1,16 @@
+# 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.
+
+handlers = org.slf4j.bridge.SLF4JBridgeHandler
Propchange: jackrabbit/oak/trunk/oak-core/src/test/resources/logging.properties
------------------------------------------------------------------------------
svn:eol-style = native