[jboss-svn-commits] JBoss Common SVN: r4770 - in arquillian/trunk: examples/junit and 7 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Sun Jul 18 10:45:51 EDT 2010
Author: aslak
Date: 2010-07-18 10:45:50 -0400 (Sun, 18 Jul 2010)
New Revision: 4770
Removed:
arquillian/trunk/frameworks/jsfunit/src/main/java/org/jboss/jsfunit/context/
Modified:
arquillian/trunk/containers/pom.xml
arquillian/trunk/examples/junit/pom.xml
arquillian/trunk/examples/testng/pom.xml
arquillian/trunk/examples/testng/src/test/java/com/acme/jms/InjectionTestCase.java
arquillian/trunk/extensions/performance/pom.xml
arquillian/trunk/extensions/pom.xml
arquillian/trunk/frameworks/jsfunit/pom.xml
arquillian/trunk/frameworks/pom.xml
Log:
ARQ-221 Removed Non Release ready modules, swapped build order
Modified: arquillian/trunk/containers/pom.xml
===================================================================
--- arquillian/trunk/containers/pom.xml 2010-07-18 14:29:33 UTC (rev 4769)
+++ arquillian/trunk/containers/pom.xml 2010-07-18 14:45:50 UTC (rev 4770)
@@ -35,8 +35,6 @@
<activeByDefault>true</activeByDefault>
</activation>
<modules>
- <module>jsr88-remote-1.2</module>
- <module>osgi-embedded-4.2</module>
<!-- module>jbossas-remote-4_2</module -->
<module>jbossas-remote-5</module>
<module>jbossas-remote-5.1</module>
@@ -44,6 +42,8 @@
<module>jbossas-managed-5.1</module>
<module>jbossas-managed-6</module>
<module>jbossas-embedded-6</module>
+ <module>reloaded-embedded-1</module>
+ <module>jsr88-remote-1.2</module>
<module>glassfish-remote-3</module>
<module>glassfish-embedded-3</module>
<module>jetty-embedded-6.1</module>
@@ -52,8 +52,8 @@
<module>weld-se-embedded-1</module>
<module>weld-ee-embedded-1.1</module>
<module>openejb-embedded-3.1</module>
- <module>reloaded-embedded-1</module>
<module>openwebbeans-embedded-1</module>
+ <module>osgi-embedded-4.2</module>
</modules>
</profile>
Modified: arquillian/trunk/examples/junit/pom.xml
===================================================================
--- arquillian/trunk/examples/junit/pom.xml 2010-07-18 14:29:33 UTC (rev 4769)
+++ arquillian/trunk/examples/junit/pom.xml 2010-07-18 14:45:50 UTC (rev 4770)
@@ -33,6 +33,17 @@
</properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <parallel>none</parallel>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<profiles>
<profile>
<id>default</id>
@@ -594,6 +605,18 @@
</plugins>
</build>
</profile>
+<!--
+ <profile>
+ <id>coverage</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.arquillian.framework</groupId>
+ <artifactId>arquillian-framework-cobertura</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </profile>
+-->
</profiles>
<!-- Dependencies -->
@@ -653,6 +676,7 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
+
</dependencies>
</project>
Modified: arquillian/trunk/examples/testng/pom.xml
===================================================================
--- arquillian/trunk/examples/testng/pom.xml 2010-07-18 14:29:33 UTC (rev 4769)
+++ arquillian/trunk/examples/testng/pom.xml 2010-07-18 14:45:50 UTC (rev 4770)
@@ -598,6 +598,18 @@
</plugins>
</build>
</profile>
+<!--
+ <profile>
+ <id>coverage</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.arquillian.framework</groupId>
+ <artifactId>arquillian-framework-cobertura</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </profile>
+-->
</profiles>
Modified: arquillian/trunk/examples/testng/src/test/java/com/acme/jms/InjectionTestCase.java
===================================================================
--- arquillian/trunk/examples/testng/src/test/java/com/acme/jms/InjectionTestCase.java 2010-07-18 14:29:33 UTC (rev 4769)
+++ arquillian/trunk/examples/testng/src/test/java/com/acme/jms/InjectionTestCase.java 2010-07-18 14:45:50 UTC (rev 4770)
@@ -76,9 +76,9 @@
Message response = requestor.request(request, 5000);
Assert.assertEquals(
- "Should have responded with same message",
messageBody,
- ((TextMessage)response).getText());
+ ((TextMessage)response).getText(),
+ "Should have responded with same message");
}
finally
{
Modified: arquillian/trunk/extensions/performance/pom.xml
===================================================================
--- arquillian/trunk/extensions/performance/pom.xml 2010-07-18 14:29:33 UTC (rev 4769)
+++ arquillian/trunk/extensions/performance/pom.xml 2010-07-18 14:45:50 UTC (rev 4770)
@@ -67,7 +67,7 @@
<dependencies>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
- <artifactId>arquillian-weld-embedded</artifactId>
+ <artifactId>arquillian-weld-se-embedded</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
@@ -125,7 +125,7 @@
<dependencies>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
- <artifactId>arquillian-jbossas-remote-60</artifactId>
+ <artifactId>arquillian-jbossas-remote-6</artifactId>
<version>${project.version}</version>
</dependency>
<dependency> <!-- Need on all profiles except Glassfish to compile, api is not 100% up to date with final spec -->
Modified: arquillian/trunk/extensions/pom.xml
===================================================================
--- arquillian/trunk/extensions/pom.xml 2010-07-18 14:29:33 UTC (rev 4769)
+++ arquillian/trunk/extensions/pom.xml 2010-07-18 14:45:50 UTC (rev 4770)
@@ -23,7 +23,6 @@
<!-- Aggregate Modules -->
<modules>
-
<module>performance</module>
</modules>
Modified: arquillian/trunk/frameworks/jsfunit/pom.xml
===================================================================
--- arquillian/trunk/frameworks/jsfunit/pom.xml 2010-07-18 14:29:33 UTC (rev 4769)
+++ arquillian/trunk/frameworks/jsfunit/pom.xml 2010-07-18 14:45:50 UTC (rev 4770)
@@ -109,7 +109,6 @@
<scope>test</scope>
</dependency>
-
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
Modified: arquillian/trunk/frameworks/pom.xml
===================================================================
--- arquillian/trunk/frameworks/pom.xml 2010-07-18 14:29:33 UTC (rev 4769)
+++ arquillian/trunk/frameworks/pom.xml 2010-07-18 14:45:50 UTC (rev 4770)
@@ -27,6 +27,7 @@
<modules>
<module>jsfunit</module>
+<!-- <module>cobertura</module> -->
</modules>
More information about the jboss-svn-commits
mailing list