[seam-commits] Seam SVN: r13586 - in modules/jms/trunk: impl and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Aug 10 03:12:46 EDT 2010


Author: mgencur at redhat.com
Date: 2010-08-10 03:12:46 -0400 (Tue, 10 Aug 2010)
New Revision: 13586

Modified:
   modules/jms/trunk/impl/pom.xml
   modules/jms/trunk/pom.xml
Log:
cargo plugin removed, from now using arquillian to start and stop jboss AS,
you can run code-coverage from now using -Pjbossas-managed-5,code-coverage profiles


Modified: modules/jms/trunk/impl/pom.xml
===================================================================
--- modules/jms/trunk/impl/pom.xml	2010-08-09 22:07:22 UTC (rev 13585)
+++ modules/jms/trunk/impl/pom.xml	2010-08-10 07:12:46 UTC (rev 13586)
@@ -76,10 +76,6 @@
                   <artifactId>maven-surefire-plugin</artifactId>
                </plugin>
                <plugin>
-                  <groupId>org.codehaus.cargo</groupId>
-                  <artifactId>cargo-maven2-plugin</artifactId>
-               </plugin>
-               <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-antrun-plugin</artifactId>
                </plugin>

Modified: modules/jms/trunk/pom.xml
===================================================================
--- modules/jms/trunk/pom.xml	2010-08-09 22:07:22 UTC (rev 13585)
+++ modules/jms/trunk/pom.xml	2010-08-10 07:12:46 UTC (rev 13586)
@@ -78,48 +78,7 @@
          <build>
             <pluginManagement>
                <plugins>
-
-                  <!-- Specify this locally. Arquillian will support this properly soon -->
                   <plugin>
-                     <groupId>org.codehaus.cargo</groupId>
-                     <artifactId>cargo-maven2-plugin</artifactId>
-                     <version>1.0.1</version>
-                     <executions>
-                        <execution>
-                           <id>start-container</id>
-                           <phase>process-test-classes</phase>
-                           <goals>
-                              <goal>start</goal>
-                           </goals>
-                        </execution>
-                        <execution>
-                           <id>stop-container</id>
-                           <phase>test</phase>
-                           <goals>
-                              <goal>stop</goal>
-                           </goals>
-                        </execution>
-                     </executions>
-
-                     <configuration>
-                        <wait>false</wait>
-                        <container>
-                           <containerId>jboss6x</containerId>
-                           <home>${env.JBOSS_HOME}</home>
-                           <timeout>300000</timeout> <!-- 5 minutes -->
-                        </container>
-                        <configuration>
-                           <type>existing</type>
-                           <home>${env.JBOSS_HOME}/server/default</home>
-                           <properties>
-                              <cargo.jboss.configuration>default</cargo.jboss.configuration>
-                              <cargo.rmi.port>1090</cargo.rmi.port>
-                           </properties>
-                        </configuration>
-                     </configuration>
-                  </plugin>
-
-                  <plugin>
                      <groupId>org.apache.maven.plugins</groupId>
                      <artifactId>maven-antrun-plugin</artifactId>
                      <executions>
@@ -131,8 +90,7 @@
                            </goals>
                            <configuration>
                               <tasks>
-                                 <echo
-                                    message="Deploying emma jar to server lib directory" />
+                                 <echo message="Deploying emma jar to server lib directory" />
                                  <copy file="${emma.jar.file}"
                                     todir="${env.JBOSS_HOME}/server/default/lib"
                                     overwrite="true" />
@@ -147,15 +105,7 @@
                            </goals>
                            <configuration>
                               <tasks>
-                                 <echo
-                                    message="Moving coverage.ec file to current modele from parent module" />
-                                 <property name="coverage.file"
-                                    value="${basedir}/../coverage.ec" />
-                                 <waitfor maxwait="30"
-                                    maxwaitunit="second">
-                                    <available file="${coverage.file}" />
-                                 </waitfor>
-                                 <move file="${coverage.file}"
+                                 <move file="${env.JBOSS_HOME}/bin/coverage.ec"
                                     todir="${basedir}" failonerror="false" />
                                  <delete file="${basedir}/transaction.log"
                                     failonerror="false" />
@@ -164,7 +114,6 @@
                         </execution>
                      </executions>
                   </plugin>
-
                </plugins>
             </pluginManagement>
          </build>



More information about the seam-commits mailing list