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

svn commit: r427859 - /shale/framework/trunk/shale-apps/pom.xml

Author: wsmoak
Date: Tue Aug  1 19:35:29 2006
New Revision: 427859

URL: http://svn.apache.org/viewvc?rev=427859&view=rev
Log:
Correct the location of the unpacked selenium jar. (r427581)
SHALE-243

Modified:
    shale/framework/trunk/shale-apps/pom.xml

Modified: shale/framework/trunk/shale-apps/pom.xml
URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/pom.xml?rev=427859&r1=427858&r2=427859&view=diff
==============================================================================
--- shale/framework/trunk/shale-apps/pom.xml (original)
+++ shale/framework/trunk/shale-apps/pom.xml Tue Aug  1 19:35:29 2006
@@ -79,7 +79,7 @@
                         <artifactId>dependency-maven-plugin</artifactId>
                         <executions>
                             <execution>
-                                <id>unzip-selenium</id>
+                                <id>unpack-selenium</id>
                                 <phase>generate-resources</phase>
                                 <goals>
                                     <goal>unpack</goal>
@@ -92,7 +92,7 @@
                                             <version>0.7.0</version>
                                         </artifactItem>
                                     </artifactItems>
-                                    <outputDirectory>${project.build.directory}</outputDirectory>
+                                    <outputDirectory>${project.build.directory}/selenium</outputDirectory>
                                 </configuration>
                             </execution>
                         </executions>
@@ -106,7 +106,7 @@
                                 <configuration>
                                     <tasks>
                                         <copy todir="${project.build.directory}/${artifactId}/selenium/core">
-                                            <fileset dir="${project.build.directory}/selenium-core-0.7.0/core"/>
+                                            <fileset dir="${project.build.directory}/selenium/core"/>
                                         </copy>
                                         <copy todir="${project.build.directory}/${artifactId}/selenium/tests">
                                             <fileset dir="${basedir}/src/test/selenium"/>