Skip to content

Commit

Permalink
openshift-express profile
Browse files Browse the repository at this point in the history
  • Loading branch information
jharting committed Oct 7, 2011
1 parent a97749a commit 6d63ee9
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Expand Up @@ -60,6 +60,7 @@
<arquillian.glassfish.version>1.0.0.CR1</arquillian.glassfish.version>
<arquillian.openwebbeans.version>1.0.0.CR1</arquillian.openwebbeans.version>
<arquillian.maven.plugin.version>1.0.0.Alpha1</arquillian.maven.plugin.version>
<arquillian.openshift.express.version>1.0.0.Alpha1</arquillian.openshift.express.version>

<!-- Container versions -->
<jbossas7.version>7.0.2.Final</jbossas7.version>
Expand Down Expand Up @@ -129,6 +130,7 @@
<module>test/tomcat-embedded-6</module-->
<module>test/weld-ee-embedded-1.1</module>
<!--module>test/weld-se-embedded-1.1</module-->
<module>test/openshift-express</module>
</modules>

<dependencyManagement>
Expand Down Expand Up @@ -311,6 +313,13 @@
<version>${arquillian.weld.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-openshift-express</artifactId>
<version>${arquillian.openshift.express.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mortbay.jetty</groupId>
Expand Down Expand Up @@ -441,6 +450,14 @@
<type>pom</type>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.seam.test</groupId>
<artifactId>openshift-express</artifactId>
<version>${container.bom.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>

<!-- Selenium is used to drive functional tests -->

Expand Down
23 changes: 23 additions & 0 deletions test/openshift-express/pom.xml
@@ -0,0 +1,23 @@
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>seam-parent</artifactId>
<version>16-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<groupId>org.jboss.seam.test</groupId>
<artifactId>openshift-express</artifactId>
<packaging>pom</packaging>
<name>Openshift Express Arquillian Container BOM</name>

<dependencies>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-openshift-express</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 6d63ee9

Please sign in to comment.