Author: rdonkin
Date: Wed Mar 18 11:30:41 2009
New Revision: 755559
URL: http://svn.apache.org/viewvc?rev=755559&view=rev
Log:
Yet again, can't make dependency inheritance work :-/ Ideas, anyone? MIME4J-125
https://issues.apache.org/jira/browse/MIME4J-125
Modified:
james/mime4j/trunk/core/pom.xml
james/mime4j/trunk/pom.xml
Modified: james/mime4j/trunk/core/pom.xml
URL:
http://svn.apache.org/viewvc/james/mime4j/trunk/core/pom.xml?rev=755559&r1=755558&r2=755559&view=diff
==============================================================================
--- james/mime4j/trunk/core/pom.xml (original)
+++ james/mime4j/trunk/core/pom.xml Wed Mar 18 11:30:41 2009
@@ -76,6 +76,10 @@
</build>
<dependencies>
+ <!--
+ Dependency version numbers don't seem to be inherited correctly from the
project :-/
+ Any ideas?
+ -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
Modified: james/mime4j/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/james/mime4j/trunk/pom.xml?rev=755559&r1=755558&r2=755559&view=diff
==============================================================================
--- james/mime4j/trunk/pom.xml (original)
+++ james/mime4j/trunk/pom.xml Wed Mar 18 11:30:41 2009
@@ -214,6 +214,40 @@
</repository>
</repositories>
+ <dependencies>
+ <!--
+ Dependency version number don't seem to be inherited correctly from the
project :-/
+ Any ideas?
+ -->
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ <scope>test</scope>
+ </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>
+ <scope>test</scope>
+ <optional>true</optional>
+ </dependency>
+ </dependencies>
+
<reporting>
<plugins>
<plugin>