Author: sgoeschl
Date: Wed Jun 11 03:53:34 2008
New Revision: 666616
URL: http://svn.apache.org/viewvc?rev=666616&view=rev
Log:
Added 'provided' scope to jcs and ehcache to avoid pulling in all dependencies
Modified:
turbine/fulcrum/trunk/cache/pom.xml
Modified: turbine/fulcrum/trunk/cache/pom.xml
URL:
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/cache/pom.xml?rev=666616&r1=666615&r2=666616&view=diff
==============================================================================
--- turbine/fulcrum/trunk/cache/pom.xml (original)
+++ turbine/fulcrum/trunk/cache/pom.xml Wed Jun 11 03:53:34 2008
@@ -71,6 +71,7 @@
</exclusion>
</exclusions>
</dependency>
+ <!-- dependencies to tun JCS and/or ehcache -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
@@ -85,18 +86,18 @@
<groupId>concurrent</groupId>
<artifactId>concurrent</artifactId>
<version>1.3.4</version>
- <type>jar</type>
</dependency>
<dependency>
<groupId>ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>1.2beta4</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>jcs</groupId>
<artifactId>jcs</artifactId>
<version>1.3</version>
- <type>jar</type>
+ <scope>provided</scope>
</dependency>
<!-- testing dependencies -->
<dependency>