Author: carnold
Date: Thu Apr 26 15:07:15 2007
New Revision: 532885

URL: http://svn.apache.org/viewvc?view=rev&rev=532885
Log:
site stuff, removal of LogF and LogSF and cosmetic changes to LogMF

Added:
    logging/sandbox/log4j/formatter/LICENSE
      - copied unchanged from r532798, logging/sandbox/log4j/component/LICENSE
    logging/sandbox/log4j/formatter/src/main/java/org/apache/log4j/LogMF.java
      - copied, changed from r532798, 
logging/sandbox/log4j/formatter/src/main/java/org/apache/log4j/formatter/LogMF.java
    logging/sandbox/log4j/formatter/src/main/resources/
    logging/sandbox/log4j/formatter/src/main/resources/META-INF/
    logging/sandbox/log4j/formatter/src/site/
      - copied from r532798, logging/sandbox/log4j/rolling/src/site/
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/LogCapture.java
      - copied, changed from r532798, 
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogCapture.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/LogMFTest.java
      - copied, changed from r532798, 
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogMFTest.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/LogMFTraceTest.java
      - copied, changed from r532798, 
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogMFTraceTest.java
    logging/sandbox/log4j/formatter/src/test/resources/
Removed:
    
logging/sandbox/log4j/formatter/src/main/java/org/apache/log4j/formatter/LogF.java
    
logging/sandbox/log4j/formatter/src/main/java/org/apache/log4j/formatter/LogMF.java
    
logging/sandbox/log4j/formatter/src/main/java/org/apache/log4j/formatter/LogSF.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/Java5PerformanceTest.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogCapture.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogFTest.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogFTraceTest.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogMFTest.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogMFTraceTest.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogSFTest.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/LogSFTraceTest.java
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/formatter/PerformanceTest.java
Modified:
    logging/sandbox/log4j/formatter/build.xml
    logging/sandbox/log4j/formatter/pom.xml
    
logging/sandbox/log4j/formatter/src/test/java/org/apache/log4j/VectorAppender.java

Modified: logging/sandbox/log4j/formatter/build.xml
URL: 
http://svn.apache.org/viewvc/logging/sandbox/log4j/formatter/build.xml?view=diff&rev=532885&r1=532884&r2=532885
==============================================================================
--- logging/sandbox/log4j/formatter/build.xml (original)
+++ logging/sandbox/log4j/formatter/build.xml Thu Apr 26 15:07:15 2007
@@ -1,197 +1,152 @@
-<!--
-  Copyright 1999, 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.
-  
--->
-<project name="log4j-formatter" default="dist" basedir="." >
-         <!-- The build.properties file defines the path to local jar files -->
-         <property file="build.properties"/>
-
-         <property name="version" value="0.1"/>
-      <property name="target.dir" value="target"/>
-         <property name="classes.dir" value="${target.dir}/classes"/>
-         <property name="test-classes.dir" value="${target.dir}/test-classes"/>
-
-         <property name="M2_REPO" value="${user.home}/.m2/repository"/>
-         <property name="log4j.version" value="1.2.13"/>
-         <property name="log4j.jar" 
value="${M2_REPO}/log4j/log4j/${log4j.version}/log4j-${log4j.version}.jar"/>
-         <property name="junit.version" value="3.8.1"/>
-         <property name="junit.jar" 
value="${M2_REPO}/junit/junit/${junit.version}/junit-${junit.version}.jar"/>
-         <property name="slf4j.version" value="1.0-rc3"/>
-         <property name="slf4j.jar" 
value="${M2_REPO}/org/slf4j/slf4j-log4j12/${slf4j.version}/slf4j-log4j12-${slf4j.version}.jar"/>
-       
-         <target name="clean" description="Remove generated artifacts">
-                 <delete dir="${target.dir}"/>
-         </target>
-
-         <target name="init">
-         </target>
-               
-         <target name="compile-java2" depends="init" description="Compile 
LogMF">
-         <mkdir dir="${classes.dir}"/>
-                <javac destdir="${classes.dir}" 
-                          srcdir="src/main/java"
-                                  includes="**/LogMF.java **/LogSF.java"
-                          source="1.3"
-                          target="1.3"
-                              classpath="${log4j.jar}"/>
-         </target>
-
-
-         <target name="compile-logf" depends="init" description="Compile LogF">
-       <mkdir dir="${classes.dir}"/>
-                <javac destdir="${classes.dir}" 
-                          srcdir="src/main/java"
-                                  includes="**/LogF.java"
-                          source="1.5"
-                          target="1.5"
-                              classpath="${log4j.jar}"/>
-         </target>
-
-               
-         <target name="jar-logmf" depends="compile-java2" description="Prepare 
jar for LogMF">     
-           <delete file="${target.dir}/log4j-logmf-${version}.jar"/>
-           <mkdir dir="${target.dir}/"/>
-           
-           <jar jarfile="${target.dir}/log4j-logmf-${version}.jar" 
-                basedir="${classes.dir}">
-             <manifest>
-               <attribute name="Manifest-version" value="1.0"/>
-               <section name="org/apache/log4j/formatter/">
-                 <attribute name="Implementation-Title" value="LogMF message 
formatting utility"/>
-                 <attribute name="Implementation-Version" value="${version}"/>
-                 <attribute name="Implementation-Vendor" value="Apache 
Software Foundation"/>
-               </section>
-             </manifest>
-           </jar>
-         </target>
-
-         <target name="jar-logsf" depends="compile-java2" description="Prepare 
jar for LogSF">     
-           <delete file="${target.dir}/log4j-logsf-${version}.jar"/>
-           <mkdir dir="${target.dir}/"/>
-           
-           <jar jarfile="${target.dir}/log4j-logsf-${version}.jar" 
-                basedir="${classes.dir}">
-             <manifest>
-               <attribute name="Manifest-version" value="1.0"/>
-               <section name="org/apache/log4j/formatter/">
-                 <attribute name="Implementation-Title" value="LogSF message 
formatting utility"/>
-                 <attribute name="Implementation-Version" value="${version}"/>
-                 <attribute name="Implementation-Vendor" value="Apache 
Software Foundation"/>
-               </section>
-             </manifest>
-           </jar>
-         </target>
-
-         <target name="jar-logf" depends="compile-logf" description="Prepare 
jar for LogMF">       
-           <delete file="${target.dir}/log4j-logf-${version}.jar"/>
-           <mkdir dir="${target.dir}/"/>
-           
-           <jar jarfile="${target.dir}/log4j-logf-${version}.jar" 
-                basedir="${classes.dir}">
-             <manifest>
-               <attribute name="Manifest-version" value="1.0"/>
-               <section name="org/apache/log4j/formatter/">
-                 <attribute name="Implementation-Title" value="LogF message 
formatting utility"/>
-                 <attribute name="Implementation-Version" value="${version}"/>
-                 <attribute name="Implementation-Vendor" value="Apache 
Software Foundation"/>
-               </section>
-             </manifest>
-           </jar>
-         </target>
-
-         <target name="jar" depends="jar-logmf, jar-logsf, jar-logf"/>
-       
-         <target name="testCompile-java2" depends="compile-java2" 
description="Compile tests for LogSF and LogMF">
-         <mkdir dir="${test-classes.dir}"/>
-                <javac destdir="${test-classes.dir}" 
-                          srcdir="src/test/java"
-                                  includes="**/*.java"
-                              excludes="**/LogF*.java **/Java5*.java"
-                          source="1.3"
-                          target="1.3"
-                              
classpath="${classes.dir};${log4j.jar};${junit.jar};${slf4j.jar}"/>
-         </target>
-
-         <target name="testCompile" depends="testCompile-java2, compile-logf" 
description="Compile tests for LogSF, LogMF and LogF">
-         <mkdir dir="${test-classes.dir}"/>
-                <javac destdir="${test-classes.dir}" 
-                          srcdir="src/test/java"
-                                  includes="**/LogF*.java **/Java5*.java"
-                          source="1.5"
-                          target="1.5"
-                              
classpath="${test-classes.dir};${classes.dir};${log4j.jar};${junit.jar};${slf4j.jar}"/>
-         </target>
-       
-         <target name="test" depends="testCompile" description="Run tests for 
LogF, LogMF and LogSF">
-           <junit printsummary="yes" 
-               fork="yes">
-                 <classpath 
path="${test-classes.dir};${classes.dir};${log4j.jar};${junit.jar};${slf4j.jar}"/>
-                 <formatter type="plain" usefile="false"/>
-                 <batchtest>
-                   <fileset dir="src/test/java" 
-                       includes="**/*.java"
-                       excludes="**/VectorAppender.java **/LogCapture.java"/>
-                 </batchtest>
-           </junit>
-         </target>
-
-         <target name="test-java2" depends="compile-java2, testCompile-java2" 
-              description="Run tests for LogMF and LogSF">
-           <junit printsummary="yes" 
-               fork="yes">
-                 <classpath 
path="${test-classes.dir};${classes.dir};${log4j.jar};${junit.jar};${slf4j.jar}"/>
-                 <formatter type="plain" usefile="false"/>
-                 <batchtest>
-                   <fileset dir="src/test/java" 
-                       includes="**/*.java"
-                       excludes="**/LogF*.java **/VectorAppender.java 
**/LogCapture.java **/Java5*.java"/>
-                 </batchtest>
-           </junit>
-         </target>
-       
-        <target name="javadoc" description="Prepare Javadocs for Java 5">      
    
-           <mkdir dir="${target.dir}/javadoc" />           
-           <javadoc
-                    destdir="${target.dir}/javadoc"
-                    packagenames="org.apache.log4j.formatter"
-                    additionalparam="-breakiterator"
-                    version="true"
-                    author="true"
-                    use="true"
-                    doctitle="log4j formatter version ${version}&lt;br&gt;API 
Specification"
-                    windowtitle="Log4j Formatter Version ${version}"
-                    bottom="Copyright 1999,2006 Apache Software Foundation.">
-                <sourcepath>
-                   <pathelement path="src/main/java"/>
-                </sourcepath>
-               <classpath path="${log4j.jar}"/>
-           </javadoc>
-        </target>
-       
-         <target name="dist" depends="test, jar, javadoc"
-            description="Prepare distribution (both Java 2 and 5)">
-           <tar 
tarfile="${target.dir}/logging-log4j-formatters-${version}.tar.gz"
-                compression="gzip"
-                longfile="gnu">
-                <tarfileset dir="." 
-                                       
prefix="logging-log4j-formatters-${version}"
-                           excludes="target/** .* .settings/**"/>
-                <tarfileset dir="target" 
-                                       
prefix="logging-log4j-formatters-${version}"
-                           includes="*.jar javadoc/**"/>
-           </tar>
-         </target>
-
-</project>
\ No newline at end of file
+<!--
+ 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.
+
+-->
+
+<!--
+
+This is a minimal build file to support Gump.
+Use of Maven to build this component is recommended.
+
+-->
+<project default="test">
+    <!--  use build.properties file or command line to override these 
properties  -->
+    <property file="build.properties"/>
+       
+       <!--  project details  -->
+    <property name="project.name" value="apache-log4j-logmf"/>
+    <property name="project.title" value="Apache LogMF Companion for log4j 
1.2."/>
+    <property name="project.version" value="0.1-SNAPSHOT"/>
+    <property name="project.jar" 
value="${project.name}-${project.version}.jar"/>
+    
+    <!--  Location of local Maven 2 repository   -->
+    <property name="m2_repo" location="${user.home}/.m2/repository"/>
+
+       <!--  Versions for dependencies   -->
+    <property name="log4j.version" value="1.2.14"/>
+    <property name="junit.version" value="3.8.1"/>
+
+    <!--  Dependency locations - assumed to be in Maven 2 repository   -->
+    <property name="junit.jar" 
+       
location="${m2_repo}/junit/junit/${junit.version}/junit-${junit.version}.jar"/>
+    <property name="log4j.jar" 
+       
location="${m2_repo}/log4j/log4j/${log4j.version}/log4j-${log4j.version}.jar"/>
+
+    <!--   Java compiler settings   -->
+    <property name="javac.source" value="1.3"/>
+    <property name="javac.target" value="1.2"/>   
+    <property name="javac.deprecation" value="true"/>
+    <property name="javac.debug" value="true"/>
+       
+    <target name="init"/>
+    
+    <target name="clean" depends="init" description="Clean up generated files">
+       <delete dir="target"/>
+    </target>
+
+    <path id="compile-classpath" path="${log4j.jar}"/>
+       <path id="test-classpath">
+               <path refid="compile-classpath"/>
+               <pathelement location="target/classes"/>
+               <pathelement location="${junit.jar}"/>
+       </path>
+
+    
+    
+    <target name="compile" depends="init" description="Compile implementation 
files">
+        <mkdir dir="target/classes"/>
+       <javac destdir="target/classes"
+           srcdir="src/main/java"
+          deprecation="${javac.deprecation}"
+          debug="${javac.debug}"
+          target="${javac.target}"
+          source="${javac.source}"
+          classpathref="compile-classpath"/>
+       <copy todir="target/classes" overwrite="true">
+           <fileset dir="src/main/resources"/>
+       </copy>
+    </target>
+    
+    <target name="jar" depends="compile" description="Create jar">
+       <jar destfile="target/${project.jar}"
+            basedir="target/classes">
+               <manifest>
+                       <attribute name="Built-By" value="${user.name}"/>
+                       <section name="common">
+                               <attribute name="Specification-Title" 
value="${project.title}"/>
+                               <attribute name="Specification-Version" 
value="${project.version}"/>
+                               <attribute name="Specification-Vendor" 
value="Apache Software Foundation"/>
+                               <attribute name="Implementation-Title" 
value="${project.title}"/>
+                               <attribute name="Implementation-Version" 
value="${project.version}"/> 
+                               <attribute name="Implementation-Vendor" 
value="Apache Software Foundation"/>
+                       </section>
+               </manifest>          
+       </jar>
+    </target>    
+
+    <target name="test-compile" depends="compile" description="Compile test 
files">
+        <mkdir dir="target/test-classes"/>
+       <javac destdir="target/test-classes"
+           srcdir="src/test/java"
+          deprecation="${javac.deprecation}"
+          debug="${javac.debug}"
+          target="${javac.target}"
+          source="${javac.source}"
+          classpathref="test-classpath"/>
+       <copy todir="target/test-classes" overwrite="true">
+               <fileset dir="src/test/resources"/>
+       </copy>
+    </target>    
+
+
+    <target name="test" depends="test-compile" description="Run unit tests">
+       <junit printsummary="yes" fork="true" dir="target">
+            <classpath>
+                <path refid="test-classpath"/>
+                <pathelement path="target/test-classes"/>
+            </classpath>
+               <batchtest>
+                       <fileset dir="src/test/java/">
+                               <include name="**/*TestCase.java"/>
+                               <include name="**/*Test.java"/>
+                       </fileset>
+           </batchtest>
+           <formatter type="plain" usefile="false"/>
+       </junit>
+    </target>
+
+<taskdef name="jalopy"
+           classname="de.hunsicker.jalopy.plugin.ant.AntPlugin">
+    <!--
+
+      we did not copy the needed .jars into the /lib directory of Ant in order
+      to avoid possible classpath issues, so we have to specify a lookup
+      classpath here
+
+      -->
+    <classpath>
+      <fileset dir="${user.home}/java/jalopy-ant-0.6.2/lib">
+        <include name="*.jar" />
+      </fileset>
+    </classpath>
+  </taskdef>
+
+    <target name="fixcrlf">
+        <jalopy fileformat="unix">
+             <fileset dir="src" includes="**/*.java"/>
+        </jalopy>
+    </target>
+</project>

Modified: logging/sandbox/log4j/formatter/pom.xml
URL: 
http://svn.apache.org/viewvc/logging/sandbox/log4j/formatter/pom.xml?view=diff&rev=532885&r1=532884&r2=532885
==============================================================================
--- logging/sandbox/log4j/formatter/pom.xml (original)
+++ logging/sandbox/log4j/formatter/pom.xml Thu Apr 26 15:07:15 2007
@@ -1,150 +1,186 @@
-<!--
-  Copyright 1999, 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.
-  
--->
-<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>
-  <groupId>org.apache.log4j.formatter</groupId>
-  <artifactId>log4j-formatter</artifactId>
-  <packaging>jar</packaging>
-  <version>0.1</version>
-  <name>log4j formatter</name>
-  <description>Message formatting classes for log4j</description>
-  <url>http://logging.apache.org/sandbox/formatter</url>
-  <issueManagement>
-    <system>Bugzilla</system>
-    <url>http://issues.apache.org/bugzilla</url>
-  </issueManagement>
-  <inceptionYear>1999</inceptionYear>
-<mailingLists>
-       <mailingList>
-               <name>log4j-user</name>
-               <subscribe>[EMAIL PROTECTED]</subscribe>
-               <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
-               <post>[EMAIL PROTECTED]</post>
-               
<archive>http://mail-archives.apache.org/mod_mbox/logging-log4j-dev/</archive>
-               <otherArchives>
-                       
<otherArchive>http://marc.theaimsgroup.com/?l=log4j-user&amp;r=1&amp;w=2</otherArchive>
-                   
<otherArchive>http://dir.gmane.org/gmane.comp.jakarta.log4j.user</otherArchive>
-               </otherArchives>
-       </mailingList>
-       <mailingList>
-               <name>log4j-dev</name>
-               <subscribe>[EMAIL PROTECTED]</subscribe>
-               <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
-               <post>[email protected]</post>
-               
<archive>http://mail-archives.apache.org/mod_mbox/logging-log4j-dev/</archive>
-               <otherArchives>
-                   
<otherArchive>http://marc.theaimsgroup.com/?l=log4j-dev&amp;r=1&amp;w=2</otherArchive>
-                   
<otherArchive>http://dir.gmane.org/gmane.comp.jakarta.log4j.devel</otherArchive>
-               </otherArchives>
-       </mailingList>
-</mailingLists>
-<developers>
-   <developer>
-          <id>carnold</id>
-          <name>Curt Arnold</name>
-          <email>[EMAIL PROTECTED]</email>
-       </developer>
-</developers>
-<licenses>
-       <license>
-               <name>Apache License, Version 2.0</name>
-               <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-               <distribution>repo</distribution>
-       </license>
-</licenses>
-<scm>
-       
<connection>scm:svn:http://svn.apache.org/repos/asf/logging/sandbox/log4j/formatter</connection>
-       
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/logging/sandbox/log4j/formatter</developerConnection>
-       
<url>http://svn.apache.org/viewcvs.cgi/logging/sandbox/log4j/formatter</url>
-</scm>
-<organization>
-    <name>Apache Software Foundation</name>
-    <url>http://www.apache.org</url>
-</organization>
-<build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-checkstyle-plugin</artifactId>
-        <dependencies>
-          <dependency>
-            <groupId>log4j</groupId>
-            <artifactId>log4j</artifactId>
-            <version>1.2.13</version>
-          </dependency>
-        </dependencies>
-      </plugin>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-            <source>1.5</source>
-            <target>1.5</target>
-        </configuration>
-      </plugin>
-    </plugins>
-</build>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
-      <version>1.2.13</version>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
-      <version>1.0-rc3</version>
-    </dependency>
-  </dependencies>
-  <reporting>
-    <plugins>
-      <!-- plugin>
-        <artifactId>maven-checkstyle-plugin</artifactId>
-      </plugin -->
-      <!-- plugin>
-        <artifactId>maven-pmd-plugin</artifactId>
-      </plugin -->
-      <plugin>
-        <artifactId>maven-clover-plugin</artifactId>
-      </plugin>
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-      </plugin>
-      <!-- plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-      </plugin -->
-      <!-- plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>jxr-maven-plugin</artifactId>
-      </plugin -->
-      <!-- plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>changelog-maven-plugin</artifactId>
-      </plugin -->
-      <plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>changes-maven-plugin</artifactId>
-      </plugin>
-    </plugins>
-  </reporting>
-</project>
+<!--
+ 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.
+
+-->
+<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>
+  <groupId>log4j</groupId>
+  <artifactId>apache-log4j-logmf</artifactId>
+  <packaging>jar</packaging>
+  <version>0.1-SNAPSHOT</version>
+  <name>Apache LogMF Companion for log4j 1.2.</name>
+  <description>This companion provides parameterized logging using the 
java.text.MessageFormat.</description>
+  <url>http://logging.apache.org/log4j/companions/logmf</url>
+  <issueManagement>
+    <system>Bugzilla</system>
+    <url>http://issues.apache.org/bugzilla/</url>
+  </issueManagement>
+  <ciManagement>
+               <system>Gump</system>
+                
<url>http://vmgump.apache.org/gump/public/logging-log4j-logmf/logging-log4j-logmf/index.html</url>
+  </ciManagement>
+<mailingLists>
+       <mailingList>
+               <name>log4j-user</name>
+               <subscribe>[EMAIL PROTECTED]</subscribe>
+               <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+               <post>[EMAIL PROTECTED]</post>
+               
<archive>http://mail-archives.apache.org/mod_mbox/logging-log4j-user/</archive>
+               <otherArchives>
+                       
<otherArchive>http://marc.theaimsgroup.com/?l=log4j-user&amp;r=1&amp;w=2</otherArchive>
+                   
<otherArchive>http://dir.gmane.org/gmane.comp.jakarta.log4j.user</otherArchive>
+               </otherArchives>
+       </mailingList>
+       <mailingList>
+               <name>log4j-dev</name>
+               <subscribe>[EMAIL PROTECTED]</subscribe>
+               <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+               <post>[email protected]</post>
+               
<archive>http://mail-archives.apache.org/mod_mbox/logging-log4j-dev/</archive>
+               <otherArchives>
+                   
<otherArchive>http://marc.theaimsgroup.com/?l=log4j-dev&amp;r=1&amp;w=2</otherArchive>
+                   
<otherArchive>http://dir.gmane.org/gmane.comp.jakarta.log4j.devel</otherArchive>
+               </otherArchives>
+       </mailingList>
+</mailingLists>
+<developers>
+    <developer>
+       <id>carnold</id>
+       <name>Curt Arnold</name>
+       <email>[EMAIL PROTECTED]</email>
+       <timezone>-6</timezone>
+    </developer>
+ </developers>
+<licenses>
+       <license>
+               <name>Apache License, Version 2.0</name>
+               <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+               <distribution>repo</distribution>
+       </license>
+</licenses>
+<scm>
+       
<connection>scm:svn:http://svn.apache.org/repos/asf/logging/sandbox/log4j/logmf</connection>
+       
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/logging/sandbox/log4j/logmf</developerConnection>
+       <url>http://svn.apache.org/viewcvs.cgi/logging/sandbox/log4j/logmf</url>
+</scm>
+<organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org</url>
+</organization>
+<build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <dependencies>
+          <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.14</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+        <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <workingDirectory>target</workingDirectory>
+        </configuration>
+      </plugin>          
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+            <source>1.3</source>
+            <target>1.3</target>
+        </configuration>
+      </plugin>
+       <!-- clean stray cobertura.ser -->
+  <plugin> 
+   <groupId>org.codehaus.mojo</groupId> 
+   <artifactId>cobertura-maven-plugin</artifactId> 
+   <executions> 
+    <execution> 
+     <id>clean</id> 
+     <goals> 
+      <goal>clean</goal> 
+     </goals> 
+    </execution> 
+   </executions> 
+  </plugin> 
+    </plugins>
+</build>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.14</version>
+    </dependency>    
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-pmd-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+      <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>jxr-maven-plugin</artifactId>
+      </plugin>
+       <plugin> 
+               <groupId>org.codehaus.mojo</groupId> 
+               <artifactId>cobertura-maven-plugin</artifactId>
+               <!-- version 2.1 was flawed and reports 100% coverage  -->
+               <version>2.0</version>
+       </plugin> 
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+       <reportSets>
+          <reportSet>
+            <reports>
+              <report>changes-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+        <configuration>
+               
<issueLinkTemplate>%URL%/show_bug.cgi?id=%ISSUE%</issueLinkTemplate>
+        </configuration>
+      </plugin>      
+    </plugins>
+  </reporting>
+ <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      
<url>scp://people.apache.org/home/carnold/public_html/log4j/companions/logmf</url>
+    </site>
+  </distributionManagement> 
+  
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to