Author: rdonkin
Date: Fri Nov 9 23:59:09 2007
New Revision: 593751
URL: http://svn.apache.org/viewvc?rev=593751&view=rev
Log:
Added Mime4J SNAPSHOT for use in IMAP.
Added:
james/server/trunk/stage/commons-io/
james/server/trunk/stage/commons-io/jars/
james/server/trunk/stage/commons-io/jars/commons-io-1.2.jar (with props)
james/server/trunk/stage/commons-io/pom/
james/server/trunk/stage/commons-io/pom/commons-io-1.2.pom
james/server/trunk/stage/org.apache.james/jars/apache-mime4j-0.4-SNAPSHOT.jar
(with props)
james/server/trunk/stage/org.apache.james/poms/apache-mime4j-0.4-SNAPSHOT.pom
Modified:
james/server/trunk/build-tools/base-build.xml
james/server/trunk/include.properties
james/server/trunk/phoenix-deployment/build.xml
james/server/trunk/pom.xml
Modified: james/server/trunk/build-tools/base-build.xml
URL:
http://svn.apache.org/viewvc/james/server/trunk/build-tools/base-build.xml?rev=593751&r1=593750&r2=593751&view=diff
==============================================================================
--- james/server/trunk/build-tools/base-build.xml (original)
+++ james/server/trunk/build-tools/base-build.xml Fri Nov 9 23:59:09 2007
@@ -198,7 +198,9 @@
<include name="${jsieve.jar}"/>
<include name="${mailet.jar}"/>
<include name="${commons-digester.jar}"/>
- <include name="${concurrent.jar}"/>
+ <include name="${concurrent.jar}"/>
+ <include name="${mime4j.jar}"/>
+ <include name="${commons-io.jar}"/>
</fileset>
</path>
<path id='classpath.base.test'>
Modified: james/server/trunk/include.properties
URL:
http://svn.apache.org/viewvc/james/server/trunk/include.properties?rev=593751&r1=593750&r2=593751&view=diff
==============================================================================
--- james/server/trunk/include.properties (original)
+++ james/server/trunk/include.properties Fri Nov 9 23:59:09 2007
@@ -53,6 +53,7 @@
path.lib.avalon=org.apache.avalon.framework/jars
path.lib.commonsdbcp=commons-dbcp/jars
path.lib.commonscollections=commons-collections/jars
+path.lib.commonsio=commons-io/jars
path.lib.cornerstonethreads=org.apache.avalon.cornerstone.threads/jars
path.lib.cornerstoneconnection=org.apache.avalon.cornerstone.connection/jars
path.lib.cornerstonesockets=org.apache.avalon.cornerstone.sockets/jars
@@ -225,7 +226,13 @@
# ----- mailet-----
jarname.mailet.jar=mailet-3.0-SNAPSHOT.jar
mailet.jar=${path.lib.james}/${jarname.mailet.jar}
+jarname.commons-io.jar=commons-io-1.2.jar
+commons-io.jar=${path.lib.commonsio}/${jarname.commons-io.jar}
+
+# ----- Mime4J-----
+jarname.mime4j.jar=apache-mime4j-0.4-SNAPSHOT.jar
+mime4j.jar=${path.lib.james}/${jarname.mime4j.jar}
# ----- Logging
jarname.avalon-logkit.jar=avalon-logkit-2.2.1.jar
Modified: james/server/trunk/phoenix-deployment/build.xml
URL:
http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/build.xml?rev=593751&r1=593750&r2=593751&view=diff
==============================================================================
--- james/server/trunk/phoenix-deployment/build.xml (original)
+++ james/server/trunk/phoenix-deployment/build.xml Fri Nov 9 23:59:09 2007
@@ -100,6 +100,8 @@
<include name="${jsieve.jar}"/>
<include name="${mailet.jar}"/>
<include name="${commons-digester.jar}"/>
+ <include name="${mime4j.jar}"/>
+ <include name="${commons-io.jar}"/>
<!-- TODO: include libraries without wildcards -->
<include
name="${path.lib.james}/${jars-prefix}*-api-${version}.jar"/>
<include
name="${path.lib.james}/${jars-prefix}*-library-${version}.jar"/>
@@ -534,6 +536,8 @@
<lib dir="${lib.dir}/${path.lib.james}"
includes="${jarname.jsieve.jar}" />
<lib dir="${lib.dir}/${path.lib.james}"
includes="${jarname.mailet.jar}" />
<lib dir="${lib.dir}/${path.lib.commonsdigester}"
includes="${jarname.commons-digester.jar}" />
+ <lib dir="${lib.dir}/${path.lib.commonsio}"
includes="${jarname.commons-io.jar}" />
+ <lib dir="${lib.dir}/${path.lib.james}"
includes="${jarname.mime4j.jar}" />
<!-- include every api, library and function -->
<!-- TODO this should list exactly the module defined, without
wildcards -->
<lib dir="${lib.dir}/${path.lib.james}">
Modified: james/server/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/james/server/trunk/pom.xml?rev=593751&r1=593750&r2=593751&view=diff
==============================================================================
--- james/server/trunk/pom.xml (original)
+++ james/server/trunk/pom.xml Fri Nov 9 23:59:09 2007
@@ -765,6 +765,17 @@
<artifactId>cornerstone-datasources-api</artifactId>
<version>2.2.2</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.james</groupId>
+ <artifactId>apache-mime4j</artifactId>
+ <version>0.4-SNAPSHOT</version>
+ </dependency>
+ <!-- Used by Mime4J -->
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.2</version>
+ </dependency>
</dependencies>
</dependencyManagement>
</project>
Added: james/server/trunk/stage/commons-io/jars/commons-io-1.2.jar
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/commons-io/jars/commons-io-1.2.jar?rev=593751&view=auto
==============================================================================
Binary file - no diff available.
Propchange: james/server/trunk/stage/commons-io/jars/commons-io-1.2.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: james/server/trunk/stage/commons-io/pom/commons-io-1.2.pom
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/commons-io/pom/commons-io-1.2.pom?rev=593751&view=auto
==============================================================================
--- james/server/trunk/stage/commons-io/pom/commons-io-1.2.pom (added)
+++ james/server/trunk/stage/commons-io/pom/commons-io-1.2.pom Fri Nov 9
23:59:09 2007
@@ -0,0 +1,235 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <name>IO</name>
+ <version>1.2</version>
+ <description>Commons-IO contains utility classes, stream implementations,
file filters, and endian classes.</description>
+ <url>http://jakarta.apache.org/commons/io/</url>
+ <issueManagement>
+ <url>http://issues.apache.org/bugzilla/</url>
+ </issueManagement>
+ <ciManagement>
+ <notifiers>
+ <notifier>
+ <configuration>
+ <address>[EMAIL PROTECTED]</address>
+ </configuration>
+ </notifier>
+ </notifiers>
+ </ciManagement>
+ <inceptionYear>2002</inceptionYear>
+ <mailingLists>
+ <mailingList>
+ <name>Commons Dev List</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <archive>http://mail-archives.apache.org/eyebrowse/[EMAIL
PROTECTED]</archive>
+ </mailingList>
+ <mailingList>
+ <name>Commons User List</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <archive>http://mail-archives.apache.org/eyebrowse/[EMAIL
PROTECTED]</archive>
+ </mailingList>
+ </mailingLists>
+ <developers>
+ <developer>
+ <id>sanders</id>
+ <name>Scott Sanders</name>
+ <email>[EMAIL PROTECTED]</email>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>dion</id>
+ <name>dIon Gillard</name>
+ <email>[EMAIL PROTECTED]</email>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>nicolaken</id>
+ <name>Nicola Ken Barozzi</name>
+ <email>[EMAIL PROTECTED]</email>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>bayard</id>
+ <name>Henri Yandell</name>
+ <email>[EMAIL PROTECTED]</email>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>scolebourne</id>
+ <name>Stephen Colebourne</name>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+ <developer>
+ <id>jeremias</id>
+ <name>Jeremias Maerki</name>
+ <email>[EMAIL PROTECTED]</email>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ <timezone>+1</timezone>
+ </developer>
+ <developer>
+ <id>matth</id>
+ <name>Matthew Hawthorne</name>
+ <email>[EMAIL PROTECTED]</email>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>martinc</id>
+ <name>Martin Cooper</name>
+ <email>[EMAIL PROTECTED]</email>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>roxspring</id>
+ <name>Rob Oxspring</name>
+ <email>[EMAIL PROTECTED]</email>
+ <organization></organization>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ </developers>
+ <contributors>
+ <contributor>
+ <name>Rahul Akolkar</name>
+ </contributor>
+ <contributor>
+ <name>Jason Anderson</name>
+ </contributor>
+ <contributor>
+ <name>Nathan Beyer</name>
+ </contributor>
+ <contributor>
+ <name>Chris Eldredge</name>
+ </contributor>
+ <contributor>
+ <name>Jim Harrington</name>
+ </contributor>
+ <contributor>
+ <name>Thomas Ledoux</name>
+ </contributor>
+ <contributor>
+ <name>Andy Lehane</name>
+ </contributor>
+ <contributor>
+ <name>Marcelo Liberato</name>
+ </contributor>
+ <contributor>
+ <name>Alban Peignier</name>
+ <email>alban.peignier at free.fr</email>
+ </contributor>
+ <contributor>
+ <name>Niall Pemberton</name>
+ </contributor>
+ <contributor>
+ <name>Ian Springer</name>
+ </contributor>
+ <contributor>
+ <name>Masato Tezuka</name>
+ </contributor>
+ <contributor>
+ <name>Frank W. Zammetti</name>
+ </contributor>
+ </contributors>
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>/LICENSE.txt</url>
+ </license>
+ </licenses>
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk</connection>
+ <url>http://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk</url>
+ </scm>
+ <organization>
+ <name>The Apache Software Foundation</name>
+ <url>http://jakarta.apache.org</url>
+ </organization>
+ <build>
+ <sourceDirectory>src/java</sourceDirectory>
+ <testSourceDirectory>src/test</testSourceDirectory>
+ <resources>
+ <resource>
+ <targetPath>META-INF</targetPath>
+ <directory>.</directory>
+ <includes>
+ <include>NOTICE.txt</include>
+ </includes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*Test*</include>
+ </includes>
+ <excludes>
+ <exclude>**/*AbstractTestCase*</exclude>
+ <exclude>**/AllIOTestSuite*</exclude>
+ <exclude>**/PackageTestSuite*</exclude>
+ <exclude>**/testtools/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>maven-plugins</groupId>
+ <artifactId>maven-cobertura-plugin</artifactId>
+ <version>1.1.1</version>
+ <configuration>
+ <scope>test</scope>
+ <comment>Required only for generating test coverage
reports.</comment>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <distributionManagement>
+ <repository>
+ <id>default</id>
+ <name>Default Repository</name>
+ <url>file:///www/jakarta.apache.org/builds/jakarta-commons/io/</url>
+ </repository>
+ <site>
+ <id>default</id>
+ <name>Default Site</name>
+ <url>scp://people.apache.org//www/jakarta.apache.org/commons/io/</url>
+ </site>
+ <status>converted</status>
+ </distributionManagement>
+</project>
\ No newline at end of file
Added:
james/server/trunk/stage/org.apache.james/jars/apache-mime4j-0.4-SNAPSHOT.jar
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/jars/apache-mime4j-0.4-SNAPSHOT.jar?rev=593751&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
james/server/trunk/stage/org.apache.james/jars/apache-mime4j-0.4-SNAPSHOT.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
james/server/trunk/stage/org.apache.james/poms/apache-mime4j-0.4-SNAPSHOT.pom
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/poms/apache-mime4j-0.4-SNAPSHOT.pom?rev=593751&view=auto
==============================================================================
---
james/server/trunk/stage/org.apache.james/poms/apache-mime4j-0.4-SNAPSHOT.pom
(added)
+++
james/server/trunk/stage/org.apache.james/poms/apache-mime4j-0.4-SNAPSHOT.pom
Fri Nov 9 23:59:09 2007
@@ -0,0 +1,296 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+ <!--
+ 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.
+ -->
+ <parent>
+ <artifactId>james-project</artifactId>
+ <groupId>org.apache.james</groupId>
+ <version>1.2</version>
+ <!-- Either this really points to the james-project/pom.xml or you
+ will have to tune the local repository, later, in this file -->
+ <relativePath>../james-project/project/pom.xml</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.james</groupId>
+ <artifactId>apache-mime4j</artifactId>
+ <name>Apache JAMES Mime4j</name>
+ <version>0.4-SNAPSHOT</version>
+ <description>Java stream based MIME message parser</description>
+ <url>http://james.apache.org/mime4j</url>
+ <issueManagement>
+ <url>http://issues.apache.org/jira/browse/MIME4J</url>
+ </issueManagement>
+ <inceptionYear>2004</inceptionYear>
+ <distributionManagement>
+ <site>
+ <id>mime4j-website</id>
+ <url>scp://minotaur.apache.org/www/james.apache.org/mime4j/</url>
+ </site>
+ </distributionManagement>
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/james/mime4j/trunk</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/mime4j/trunk</developerConnection>
+ <url>http://svn.apache.org/viewvc/james/mime4j/trunk/</url>
+ </scm>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>javacc-maven-plugin</artifactId>
+ <version>2.1</version>
+ <executions>
+ <execution>
+ <id>generate-jjtree</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>jjtree</goal>
+ </goals>
+ <configuration>
+ <!--
<nodePackage>org.apache.jsieve.parser.generated</nodePackage> -->
+
<outputDirectory>${project.build.directory}/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser</outputDirectory>
+ </configuration>
+ </execution>
+ <execution>
+ <id>generate-javacc</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>javacc</goal>
+ </goals>
+ <configuration>
+
<sourceDirectory>${project.build.directory}/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser</sourceDirectory>
+
<packageName>org.apache.james.mime4j.field.address.parser</packageName>
+ </configuration>
+ </execution>
+ <execution>
+ <id>generate-javacc2</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>javacc</goal>
+ </goals>
+ <configuration>
+
<sourceDirectory>${basedir}/src/main/javacc/org/apache/james/mime4j/field/datetime</sourceDirectory>
+
<packageName>org.apache.james.mime4j.field.datetime.parser</packageName>
+ </configuration>
+ </execution>
+ <execution>
+ <id>generate-javacc3</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>javacc</goal>
+ </goals>
+ <configuration>
+
<sourceDirectory>${basedir}/src/main/javacc/org/apache/james/mime4j/field/contenttype</sourceDirectory>
+
<packageName>org.apache.james.mime4j.field.contenttype.parser</packageName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ <encoding>iso8859-1</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Specification-Title>Apache Mime4j</Specification-Title>
+ <Specification-Version>0.3</Specification-Version>
+ <Specification-Vendor>The Apache Software
Foundation</Specification-Vendor>
+ <Implementation-Title>Apache Mime4j</Implementation-Title>
+ <Implementation-Version>0.3</Implementation-Version>
+ <Implementation-Vendor>The Apache Software
Foundation</Implementation-Vendor>
+ <url>${pom.url}</url>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.2</version>
+ <executions>
+ <execution>
+ <id>create-javadocs</id> <!-- this is used for inheritance merges
-->
+ <phase>package</phase> <!-- append to the packaging phase. -->
+ <goals>
+ <goal>javadoc</goal> <!-- goals == mojos -->
+ <goal>jar</goal> <!-- goals == mojos -->
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-1</version>
+ <configuration>
+
<descriptorSourceDirectory>${basedir}/src/assemble/</descriptorSourceDirectory>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id> <!-- this is used for inheritance merges -->
+ <phase>package</phase> <!-- append to the packaging phase. -->
+ <goals>
+ <goal>attached</goal> <!-- goals == mojos -->
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Add NOTICE and LICENSE to generated JAR -->
+ <plugin>
+ <artifactId>maven-remote-resources-plugin</artifactId>
+ <version>1.0-alpha-5</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ <configuration>
+ <resourceBundles>
+
<resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+ </resourceBundles>
+ <properties>
+ <!-- <preProjectText>PRE PROCESS TEXT</preProjectText>
-->
+ <!-- Our src distribution includes also the test
dependencies and
+ maven remote resources doen't take this into
account, so we
+ manualy add the junit disclaimer -->
+ <postProjectText>
+ This product includes/uses software, JUnit
(http://www.junit.org/),
+developed by Kent Beck, Erich Gamma, and David Saff
+License: Common Public License Version 1.0
(http://www.opensource.org/licenses/cpl.php)
+
+This file is automatically generated by dependencies declared in pom.xml
+ </postProjectText>
+ <addLicense>true</addLicense>
+ </properties>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Use the assembly or we won't have the LICENSE/NOTICE
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ </plugin>
+ -->
+ <!--
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ -->
+ </plugins>
+ </build>
+ <repositories>
+ <repository>
+ <id>local-mime4j-stage-repository</id>
+ <name>Local mime4j stage repository</name>
+ <!-- Please note that due to http://jira.codehaus.org/browse/MNG-2896 -->
+ <!-- If you don't have james-project checked out in ../james-project -->
+ <!-- you will have to place your absolute path to the project instead -->
+ <!-- of ${basedir}, or, otherwise, manually install the parent poms -->
+ <!--
+ mvn -fignorepom.xml install:install-file
+ -Dfile=stage\org.apache.james\poms\james-parent-1.1.pom
+ -Dpackaging=pom
+ -DgroupId=org.apache.james
+ -DartifactId=james-parent
+ -Dversion=1.1
+ mvn -fignorepom.xml install:install-file
+ -Dfile=stage\org.apache.james\poms\james-project-1.2.pom
+ -Dpackaging=pom
+ -DgroupId=org.apache.james
+ -DartifactId=james-project
+ -Dversion=1.2
+ -->
+ <url>file://${basedir}/stage</url>
+ <layout>legacy</layout>
+ <snapshots>
+ <enabled>true</enabled>
+ <checksumPolicy>ignore</checksumPolicy>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ <checksumPolicy>ignore</checksumPolicy>
+ </releases>
+ </repository>
+ </repositories>
+ <dependencies>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.1</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>logkit</groupId>
+ <artifactId>logkit</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>avalon-framework</groupId>
+ <artifactId>avalon-framework</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <type>jar</type>
+ <!-- Removed as a workaround for an unidentified M2 bug -->
+ <scope>test</scope>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.2</version>
+ </dependency>
+ </dependencies>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jxr-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+
+</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]