You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2008/09/09 20:12:25 UTC

svn commit: r693541 - /tapestry/tapestry5/trunk/build.xml

Author: hlship
Date: Tue Sep  9 11:12:25 2008
New Revision: 693541

URL: http://svn.apache.org/viewvc?rev=693541&view=rev
Log:
TAPESTRY-2287: Include tapestry-test in release download

Modified:
    tapestry/tapestry5/trunk/build.xml

Modified: tapestry/tapestry5/trunk/build.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.xml?rev=693541&r1=693540&r2=693541&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.xml (original)
+++ tapestry/tapestry5/trunk/build.xml Tue Sep  9 11:12:25 2008
@@ -82,13 +82,22 @@
         <mvn:dependencies filesetid="bin.dependency.fileset" sourcesfilesetid="bin.dependency.sources.fileset">
             <dependency groupid="${group}" artifactid="tapestry-upload" version="${pom.version}"/>
             <dependency groupid="${group}" artifactid="tapestry-hibernate" version="${pom.version}">
-                <exclusion  groupid="org.hibernate" artifactid="hibernate"/>
+                <exclusion groupid="org.hibernate" artifactid="hibernate-core"/>
                 <exclusion groupid="org.hibernate" artifactid="hibernate-annotations"/>
-                <exclusion  groupid="geronimo-spec" artifactid="geronimo-spec-jta"/>
-                <exclusion  groupid="c3p0" artifactid="c3p0"/>
+                <exclusion groupid="geronimo-spec" artifactid="geronimo-spec-jta"/>
+                <exclusion groupid="c3p0" artifactid="c3p0"/>
             </dependency>
             <dependency groupid="${group}" artifactid="tapestry-spring" version="${pom.version}"/>
 
+            <!-- tapestry-test is also tricky, we want it without its (non-Apache) dependencies. -->
+
+            <dependency groupid="${group}" artifactid="tapestry-test" version="${pom.version}">
+                <exclusion groupid="org.openqa.selenium.client-drivers" artifactid="selenium-java-client-driver"/>
+                <exclusion groupid="org.openqa.selenium.server" artifactid="selenium-server"/>
+                <exclusion groupid="org.openqa.selenium.server" artifactid="selenium-server-coreless"/>
+                <exclusion groupid="org.testng" artifactid="testng"/>
+            </dependency>
+
             <!-- All else will be dragged in. -->
         </mvn:dependencies>