Author: rmannibucau
Date: Mon Dec 24 13:35:11 2012
New Revision: 1425645
URL: http://svn.apache.org/viewvc?rev=1425645&view=rev
Log:
fixing surefire version for cdi-embedded - seems surefire is highly buggy and
testng tests doesn't even run now
Modified:
openejb/trunk/openejb/tck/cdi-embedded/pom.xml
Modified: openejb/trunk/openejb/tck/cdi-embedded/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb/tck/cdi-embedded/pom.xml?rev=1425645&r1=1425644&r2=1425645&view=diff
==============================================================================
--- openejb/trunk/openejb/tck/cdi-embedded/pom.xml (original)
+++ openejb/trunk/openejb/tck/cdi-embedded/pom.xml Mon Dec 24 13:35:11 2012
@@ -15,7 +15,8 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>tck</artifactId>
<groupId>org.apache.openejb</groupId>
@@ -62,9 +63,9 @@
</dependency>
<dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>6.0.1</version>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>6.0.1</version>
</dependency>
</dependencies>
@@ -74,7 +75,8 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <configuration>
+ <version>2.12</version> <!-- seems surefire is broken and doesn't run
any test with recent versions -->
+ <configuration>
<suiteXmlFiles>
<suiteXmlFile>src/test/resources/passing.xml</suiteXmlFile>
</suiteXmlFiles>