You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by ba...@apache.org on 2009/05/17 11:42:05 UTC

svn commit: r775612 - /jakarta/taglibs/proper/standard/trunk/standard-test/pom.xml

Author: bayard
Date: Sun May 17 09:42:05 2009
New Revision: 775612

URL: http://svn.apache.org/viewvc?rev=775612&view=rev
Log:
Rewriting build logic. Now it works with a few errors that are due to the code not the build. 

Modified:
    jakarta/taglibs/proper/standard/trunk/standard-test/pom.xml

Modified: jakarta/taglibs/proper/standard/trunk/standard-test/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/taglibs/proper/standard/trunk/standard-test/pom.xml?rev=775612&r1=775611&r2=775612&view=diff
==============================================================================
--- jakarta/taglibs/proper/standard/trunk/standard-test/pom.xml (original)
+++ jakarta/taglibs/proper/standard/trunk/standard-test/pom.xml Sun May 17 09:42:05 2009
@@ -65,68 +65,82 @@
     </dependency>
 
     <!-- dependencies of the above - consider cleaning -->
+    <!--
     <dependency>
       <groupId>javax.servlet</groupId>
       <artifactId>servlet-api</artifactId>
       <version>2.5</version>
-<!--      <scope>provided</scope>  -->
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>javax.servlet.jsp</groupId>
       <artifactId>jsp-api</artifactId>
       <version>2.1</version>
-<!--      <scope>provided</scope>  -->
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>javax.el</groupId>
       <artifactId>el-api</artifactId>
       <version>1.0</version>
-<!--      <scope>provided</scope>  -->
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>xalan</groupId>
       <artifactId>xalan</artifactId>
       <version>2.7.1</version>
-<!--      <scope>provided</scope>  -->
+      <scope>provided</scope>
     </dependency>
+    -->
 
     <dependency>
       <groupId>org.apache.cactus</groupId>
       <artifactId>cactus.core.framework.javaEE.13-14</artifactId>
       <version>1.8.1</version>
-    <!--  <scope>test</scope>  -->
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.cactus</groupId>
       <artifactId>cactus.core.framework.wrapper.javaEE.14</artifactId>
       <version>1.8.1</version>
-    <!--  <scope>test</scope>  -->
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.cactus</groupId>
       <artifactId>cactus.integration.shared.api</artifactId>
       <version>1.8.1</version>
-    <!--  <scope>test</scope>  -->
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.derby</groupId>
       <artifactId>derby</artifactId>
       <version>10.4.2.0</version>
-<!--      <scope>test</scope>  -->
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.2</version>
-<!--      <scope>test</scope>  -->
+      <scope>test</scope>
     </dependency>
   </dependencies> 
 
   <build>
-    <sourceDirectory>src/test/java</sourceDirectory>
     <plugins>
 
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <webResources>
+            <resource>
+              <targetPath>WEB-INF/classes</targetPath>
+              <directory>target/test-classes</directory>
+            </resource>
+          </webResources>
+        </configuration>
+      </plugin>
+
+      <plugin>
         <groupId>org.apache.cactus</groupId>
         <artifactId>cactus.integration.maven2</artifactId>
         <version>1.8.1</version>



---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org