Author: sdeboy
Date: Tue May 18 06:22:50 2010
New Revision: 945514
URL: http://svn.apache.org/viewvc?rev=945514&view=rev
Log:
Maven and build fixes to allow log4j, Chainsaw and companions (minus ZeroConf)
to be built without requiring manual installation of any maven depdencies
- replaced log4j 1.2.16-SNAPSHOT references with log4j 1.2.16
- added java.net repository information to automatically provide javamail
maven dependency (java.net repo provide javamail 1.4.3, so all javamail refs
were updated to 1.4.3)
- added openejb maven dependency information to support javaee class
dependencies
- updated 'version' property to 1.2.16
- removed zeroconf maven dependency from Chainsaw, added jmdns 1.0 maven
dependency
All modules build (including tests) on Fedora 11.
Modified:
logging/chainsaw/trunk/pom.xml
Modified: logging/chainsaw/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/logging/chainsaw/trunk/pom.xml?rev=945514&r1=945513&r2=945514&view=diff
==============================================================================
--- logging/chainsaw/trunk/pom.xml (original)
+++ logging/chainsaw/trunk/pom.xml Tue May 18 06:22:50 2010
@@ -343,15 +343,15 @@
</dependency>
<dependency>
<groupId>log4j</groupId>
- <artifactId>apache-log4j-zeroconf</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
<artifactId>log4j</artifactId>
- <version>1.2.16-SNAPSHOT</version>
+ <version>1.2.16</version>
</dependency>
<dependency>
+ <groupId>jmdns</groupId>
+ <artifactId>jmdns</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
<groupId>xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.1.2</version>
@@ -373,6 +373,13 @@
<version>3.8.1</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.openejb</groupId>
+ <artifactId>javaee-api</artifactId>
+ <version>5.0-2</version>
+ <type>jar</type>
+ <scope>provided</scope>
+ </dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>