You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/01/03 21:47:20 UTC

svn commit: r365740 - /incubator/activemq/trunk/activemq-core/pom.xml

Author: chirino
Date: Tue Jan  3 12:47:18 2006
New Revision: 365740

URL: http://svn.apache.org/viewcvs?rev=365740&view=rev
Log:
generated resources were not being copied to target/classes

Modified:
    incubator/activemq/trunk/activemq-core/pom.xml

Modified: incubator/activemq/trunk/activemq-core/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/pom.xml?rev=365740&r1=365739&r2=365740&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-core/pom.xml (original)
+++ incubator/activemq/trunk/activemq-core/pom.xml Tue Jan  3 12:47:18 2006
@@ -149,12 +149,10 @@
       <groupId>xalan</groupId>
       <artifactId>xalan</artifactId>
     </dependency>
-<!--
     <dependency>
       <groupId>activesoap</groupId>
       <artifactId>jaxp-api</artifactId>
     </dependency>
--->
 
     <dependency>
       <groupId>mx4j</groupId>
@@ -190,6 +188,7 @@
   </dependencies>
 
   <build>
+
     <plugins>
 
       <!-- Configure which tests are included/excuded -->
@@ -202,17 +201,17 @@
           <useFile>true</useFile>
           <excludes>
             <!-- These tests run too slow to execute as part of the unit tests -->
-            <exclude implementation="java.lang.String">**/DefaultStoreBrokerTest.*</exclude>
-            <exclude implementation="java.lang.String">**/TcpTransportBrokerTest.*</exclude>
-            <exclude implementation="java.lang.String">**/activeio/**</exclude>
-            <exclude implementation="java.lang.String">**/perf/**</exclude>
+            <exclude>**/DefaultStoreBrokerTest.*</exclude>
+            <exclude>**/TcpTransportBrokerTest.*</exclude>
+            <exclude>**/activeio/**</exclude>
+            <exclude>**/perf/**</exclude>
 
             <!-- These tests fails -->
-            <exclude implementation="java.lang.String">**/*ItStillMarshallsTheSameTest.*</exclude>
+            <exclude>**/*ItStillMarshallsTheSameTest.*</exclude>
 
           </excludes>
           <includes>
-            <include implementation="java.lang.String">**/*Test.*</include>
+            <include>**/*Test.*</include>
           </includes>
         </configuration>
       </plugin>
@@ -244,7 +243,10 @@
                     namespace="http://activemq.org/config/1.0"
                     srcdir="${basedir}/src/main/java"  
                     metaInfDir="${basedir}/target/generated/"/>
-            
+
+                <copy todir="${basedir}/target/classes">
+                  <fileset dir="${basedir}/target/generated"/>
+                </copy>
                 <copy file="${basedir}/target/activemq-${version}.xsd" todir="${basedir}/../xdocs"/>
                 <copy file="${basedir}/target/activemq-${version}.xsd.html" todir="${basedir}/../xdocs"/>