Skip to content

Commit

Permalink
Fix build when running WildFly integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kenfinnigan committed Nov 12, 2014
1 parent fc17795 commit 930ad4b
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 0 deletions.
8 changes: 8 additions & 0 deletions archetypes/jsf2-basic/pom.xml
Expand Up @@ -13,6 +13,14 @@
<packaging>maven-archetype</packaging>
<name>JSF 2 Portlet archetype</name>

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

<build>
<extensions>
<extension>
Expand Down
8 changes: 8 additions & 0 deletions archetypes/richfaces-simpleapp/pom.xml
Expand Up @@ -13,6 +13,14 @@
<packaging>maven-archetype</packaging>
<name>RichFaces Simple App Portlet archetype</name>

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

<build>
<extensions>
<extension>
Expand Down
6 changes: 6 additions & 0 deletions examples/cdi-portlet/pom.xml
Expand Up @@ -71,5 +71,11 @@
<groupId>org.gatein</groupId>
<artifactId>cdi-portlet-integration</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
6 changes: 6 additions & 0 deletions examples/deltaspike-portlet/pom.xml
Expand Up @@ -49,6 +49,12 @@
<groupId>org.gatein</groupId>
<artifactId>cdi-portlet-integration</artifactId>
</dependency>

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

<build>
Expand Down
6 changes: 6 additions & 0 deletions examples/jsf2portlet/pom.xml
Expand Up @@ -29,6 +29,12 @@
<artifactId>jsf2-depchain</artifactId>
<type>pom</type>
</dependency>

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

<build>
Expand Down
6 changes: 6 additions & 0 deletions examples/richfaces-showcase/pom.xml
Expand Up @@ -72,6 +72,12 @@
<groupId>org.gatein</groupId>
<artifactId>cdi-portlet-integration</artifactId>
</dependency>

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

<build>
Expand Down
6 changes: 6 additions & 0 deletions examples/richfaces-simple/pom.xml
Expand Up @@ -55,6 +55,12 @@
<artifactId>richfaces4-depchain</artifactId>
<type>pom</type>
</dependency>

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

</project>

0 comments on commit 930ad4b

Please sign in to comment.