[seam-commits] Seam SVN: r9280 - in trunk: build and 1 other directory.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Mon Oct 13 07:55:34 EDT 2008
Author: pete.muir at jboss.org
Date: 2008-10-13 07:55:34 -0400 (Mon, 13 Oct 2008)
New Revision: 9280
Modified:
trunk/build/core.pom.xml
trunk/build/ioc.pom.xml
trunk/build/root.pom.xml
trunk/seam21migration.txt
Log:
JBSEAM-3547
Modified: trunk/build/core.pom.xml
===================================================================
--- trunk/build/core.pom.xml 2008-10-13 11:46:15 UTC (rev 9279)
+++ trunk/build/core.pom.xml 2008-10-13 11:55:34 UTC (rev 9280)
@@ -56,11 +56,13 @@
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
Modified: trunk/build/ioc.pom.xml
===================================================================
--- trunk/build/ioc.pom.xml 2008-10-13 11:46:15 UTC (rev 9279)
+++ trunk/build/ioc.pom.xml 2008-10-13 11:55:34 UTC (rev 9280)
@@ -50,6 +50,7 @@
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
+ <scope>provided</scope>
</dependency>
<!-- Microcontainer stuff isn't done -->
Modified: trunk/build/root.pom.xml
===================================================================
--- trunk/build/root.pom.xml 2008-10-13 11:46:15 UTC (rev 9279)
+++ trunk/build/root.pom.xml 2008-10-13 11:55:34 UTC (rev 9280)
@@ -189,6 +189,10 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
</exclusions>
</dependency>
Modified: trunk/seam21migration.txt
===================================================================
--- trunk/seam21migration.txt 2008-10-13 11:46:15 UTC (rev 9279)
+++ trunk/seam21migration.txt 2008-10-13 11:55:34 UTC (rev 9280)
@@ -162,4 +162,11 @@
@In CacheProvider<PojoCache> cacheProvider;
The CacheProvider provides a Map like interface, and the getDelegate() method
-can be used to retrieve the underling cache.
\ No newline at end of file
+can be used to retrieve the underling cache.
+
+
+Dependency changes (Maven)
+--------------------------
+
+The "provided" platform is now JBoss AS 4.2.3, therefore javasisst:javassist and
+dom4j:dom4j are now marked as provided.
\ No newline at end of file
More information about the seam-commits
mailing list