Skip to content

Commit

Permalink
Convert Servlet module integration tests to use Arquillian
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Aug 12, 2010
1 parent fb35e1d commit 2a7f874
Show file tree
Hide file tree
Showing 51 changed files with 1,266 additions and 642 deletions.
1 change: 0 additions & 1 deletion environments/servlet/build.properties

This file was deleted.

29 changes: 15 additions & 14 deletions environments/servlet/core/pom.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>weld-servlet-parent</artifactId>
<groupId>org.jboss.weld.servlet</groupId>
Expand All @@ -20,20 +21,8 @@
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
<classifier>jdk15</classifier>
<exclusions>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.jboss.weld</groupId>
Expand Down Expand Up @@ -87,5 +76,17 @@
<artifactId>javassist</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>

0 comments on commit 2a7f874

Please sign in to comment.