You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by vs...@apache.org on 2008/02/09 14:41:21 UTC

svn commit: r620108 - in /maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo: pom.xml src/main/resources/log4j.properties

Author: vsiveton
Date: Sat Feb  9 05:41:20 2008
New Revision: 620108

URL: http://svn.apache.org/viewvc?rev=620108&view=rev
Log:
o improved logging

Added:
    maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/src/main/resources/log4j.properties   (with props)
Modified:
    maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/pom.xml

Modified: maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/pom.xml?rev=620108&r1=620107&r2=620108&view=diff
==============================================================================
--- maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/pom.xml (original)
+++ maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/pom.xml Sat Feb  9 05:41:20 2008
@@ -20,12 +20,14 @@
 -->
 
 <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>
     <artifactId>doxia-modules</artifactId>
     <groupId>org.apache.maven.doxia</groupId>
     <version>1.0-beta-1-SNAPSHOT</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
+
   <artifactId>doxia-module-fo</artifactId>
   <name>Doxia :: FO Module</name>
   <description>A Doxia module for FO (Formatting Objects) source documents.</description>
@@ -42,6 +44,7 @@
       <timezone>+1</timezone>
     </developer>
   </developers>
+
   <dependencies>
     <dependency>
       <groupId>commons-configuration</groupId>
@@ -53,7 +56,13 @@
       <artifactId>fop</artifactId>
       <version>0.93</version>
     </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.12</version>
+    </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>

Added: maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/src/main/resources/log4j.properties
URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/src/main/resources/log4j.properties?rev=620108&view=auto
==============================================================================
--- maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/src/main/resources/log4j.properties (added)
+++ maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/src/main/resources/log4j.properties Sat Feb  9 05:41:20 2008
@@ -0,0 +1,24 @@
+# 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.
+
+log4j.rootCategory=INFO, stdout
+
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern=%5p [%c:%L] %d{ISO8601} - %m%n
+
+log4j.logger.org.apache.fop=ERROR

Propchange: maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/src/main/resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia/trunk/doxia-modules/doxia-module-fo/src/main/resources/log4j.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"