You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/07/08 01:37:28 UTC

svn commit: r420013 - in /geronimo/sandbox/svkmerge/m2migration/m2-plugins: ./ logging-config/ logging-config/src/ logging-config/src/main/ logging-config/src/main/resources/ plugin-support/

Author: jdillon
Date: Fri Jul  7 16:37:27 2006
New Revision: 420013

URL: http://svn.apache.org/viewvc?rev=420013&view=rev
Log:
Adding shared build logging configuration.  Pending hooking up as this really needs to be in a separate project.

Added:
    geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/
    geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/pom.xml   (with props)
    geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/
    geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/
    geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/
    geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/log4j.properties   (with props)
Modified:
    geronimo/sandbox/svkmerge/m2migration/m2-plugins/plugin-support/pom.xml
    geronimo/sandbox/svkmerge/m2migration/m2-plugins/pom.xml

Added: geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/pom.xml?rev=420013&view=auto
==============================================================================
--- geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/pom.xml (added)
+++ geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/pom.xml Fri Jul  7 16:37:27 2006
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Copyright 2006 The Apache Software Foundation
+    
+    Licensed 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <artifactId>plugins-parent</artifactId>
+        <version>1.2-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    
+    <artifactId>logging-config</artifactId>
+    <name>Geronimo Plugins :: Logging Configuration</name>
+    
+    <description>
+        Provides the common logging configuration used by the build process,
+        primarily used to collect test output into ${basedir}/target/test.log
+    </description>
+    
+    <dependencies>
+        
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <scope>test</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <scope>test</scope>
+        </dependency>
+        
+    </dependencies>
+    
+</project>
+

Propchange: geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/log4j.properties
URL: http://svn.apache.org/viewvc/geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/log4j.properties?rev=420013&view=auto
==============================================================================
--- geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/log4j.properties (added)
+++ geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/log4j.properties Fri Jul  7 16:37:27 2006
@@ -0,0 +1,19 @@
+##
+## $Id$
+##
+
+log4j.rootCategory=DEBUG, FILE, CONSOLE
+
+log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
+log4j.appender.CONSOLE.Target=System.out
+log4j.appender.CONSOLE.Threshold=WARN
+log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
+log4j.appender.CONSOLE.layout.ConversionPattern=%d{ABSOLUTE} %-5p [%c{1}] %m%n
+
+log4j.appender.FILE=org.apache.log4j.FileAppender
+log4j.appender.FILE.File=${basedir}/target/test.log
+log4j.appender.FILE.Append=false
+log4j.appender.FILE.Threshold=DEBUG
+log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
+log4j.appender.FILE.layout.ConversionPattern=%d{ABSOLUTE} %-5p (%t) [%c] %m%n
+

Propchange: geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/log4j.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/sandbox/svkmerge/m2migration/m2-plugins/logging-config/src/main/resources/log4j.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/sandbox/svkmerge/m2migration/m2-plugins/plugin-support/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/svkmerge/m2migration/m2-plugins/plugin-support/pom.xml?rev=420013&r1=420012&r2=420013&view=diff
==============================================================================
--- geronimo/sandbox/svkmerge/m2migration/m2-plugins/plugin-support/pom.xml (original)
+++ geronimo/sandbox/svkmerge/m2migration/m2-plugins/plugin-support/pom.xml Fri Jul  7 16:37:27 2006
@@ -17,11 +17,8 @@
 
 <!-- $Rev$ $Date$ -->
 
-<project
-    xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
     <modelVersion>4.0.0</modelVersion>
 
     <parent>

Modified: geronimo/sandbox/svkmerge/m2migration/m2-plugins/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/svkmerge/m2migration/m2-plugins/pom.xml?rev=420013&r1=420012&r2=420013&view=diff
==============================================================================
--- geronimo/sandbox/svkmerge/m2migration/m2-plugins/pom.xml (original)
+++ geronimo/sandbox/svkmerge/m2migration/m2-plugins/pom.xml Fri Jul  7 16:37:27 2006
@@ -17,10 +17,7 @@
 
 <!-- $Rev$ $Date$ -->
 
-<project
-    xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     
     <modelVersion>4.0.0</modelVersion>
     
@@ -62,6 +59,7 @@
     </dependencies>
     
     <modules>
+        <module>logging-config</module>
         <module>plugin-support</module>
         <module>geronimo-packaging-plugin</module>
         <module>geronimo-assembly-plugin</module>