You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shale.apache.org by cr...@apache.org on 2006/08/04 05:35:01 UTC

svn commit: r428607 - in /shale/framework/trunk/shale-apps: shale-blank/pom.xml shale-clay-usecases/pom.xml shale-usecases/pom.xml

Author: craigmcc
Date: Thu Aug  3 20:35:00 2006
New Revision: 428607

URL: http://svn.apache.org/viewvc?rev=428607&view=rev
Log:
Exclude an additional HtmlUnit dependency (pull-parser:pull-parser:2)
that (at least for me) caused an ancient JAXP parser to be loaded, which
would blow up the integration tests.

With this change, I can now do "mvn -Papps,itest clean install site"
successfully from the top-level "framework" directory.  Among other
things, it will perform the integration tests on the apps that have them
(shale-blank and shale-usecases).

Modified:
    shale/framework/trunk/shale-apps/shale-blank/pom.xml
    shale/framework/trunk/shale-apps/shale-clay-usecases/pom.xml
    shale/framework/trunk/shale-apps/shale-usecases/pom.xml

Modified: shale/framework/trunk/shale-apps/shale-blank/pom.xml
URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-blank/pom.xml?rev=428607&r1=428606&r2=428607&view=diff
==============================================================================
--- shale/framework/trunk/shale-apps/shale-blank/pom.xml (original)
+++ shale/framework/trunk/shale-apps/shale-blank/pom.xml Thu Aug  3 20:35:00 2006
@@ -40,6 +40,10 @@
             <scope>test</scope>
             <exclusions>
                 <exclusion>
+                    <groupId>pull-parser</groupId>
+                    <artifactId>pull-parser</artifactId>
+                </exclusion>
+                <exclusion>
                     <groupId>javax.xml</groupId>
                     <artifactId>jsr173</artifactId>
                 </exclusion>

Modified: shale/framework/trunk/shale-apps/shale-clay-usecases/pom.xml
URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-clay-usecases/pom.xml?rev=428607&r1=428606&r2=428607&view=diff
==============================================================================
--- shale/framework/trunk/shale-apps/shale-clay-usecases/pom.xml (original)
+++ shale/framework/trunk/shale-apps/shale-clay-usecases/pom.xml Thu Aug  3 20:35:00 2006
@@ -89,6 +89,10 @@
             <scope>test</scope>
             <exclusions>
                 <exclusion>
+                    <groupId>pull-parser</groupId>
+                    <artifactId>pull-parser</artifactId>
+                </exclusion>
+                <exclusion>
                     <groupId>javax.xml</groupId>
                     <artifactId>jsr173</artifactId>
                 </exclusion>

Modified: shale/framework/trunk/shale-apps/shale-usecases/pom.xml
URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-usecases/pom.xml?rev=428607&r1=428606&r2=428607&view=diff
==============================================================================
--- shale/framework/trunk/shale-apps/shale-usecases/pom.xml (original)
+++ shale/framework/trunk/shale-apps/shale-usecases/pom.xml Thu Aug  3 20:35:00 2006
@@ -89,6 +89,10 @@
             <scope>test</scope>
             <exclusions>
                 <exclusion>
+                    <groupId>pull-parser</groupId>
+                    <artifactId>pull-parser</artifactId>
+                </exclusion>
+                <exclusion>
                     <groupId>javax.xml</groupId>
                     <artifactId>jsr173</artifactId>
                 </exclusion>