Skip to content

Commit

Permalink
updates for running TCK
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@868 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Jan 10, 2009
1 parent 15d80a8 commit bb19395
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
10 changes: 7 additions & 3 deletions pom.xml
Expand Up @@ -64,7 +64,11 @@
<module>webbeans-ri</module>
<module>webbeans-ri-spi</module>
</modules>


<properties>
<webbeans.tck.version>1.0.0-SNAPSHOT</webbeans.tck.version>
</properties>

<dependencyManagement>
<dependencies>

Expand Down Expand Up @@ -187,13 +191,13 @@
<dependency>
<groupId>org.jboss.webbeans.tck</groupId>
<artifactId>webbeans-tck-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>${webbeans.tck.version}</version>
</dependency>

<dependency>
<groupId>org.jboss.webbeans.tck</groupId>
<artifactId>webbeans-tck-impl</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>${webbeans.tck.version}</version>
</dependency>

</dependencies>
Expand Down
48 changes: 37 additions & 11 deletions webbeans-ri/pom.xml
Expand Up @@ -103,17 +103,43 @@
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>generate-test-sources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.jboss.webbeans.tck</groupId>
<artifactId>webbeans-tck-impl</artifactId>
<version>${webbeans.tck.version}</version>
<type>xml</type>
<classifier>suite</classifier>
<overWrite>true</overWrite>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml,</suiteXmlFile>
<suiteXmlFile>${project.build.directory}/dependency/webbeans-tck-impl-${webbeans.tck.version}-suite.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>

</project>

This file was deleted.

0 comments on commit bb19395

Please sign in to comment.