Skip to content

Commit

Permalink
added profile for integration testing with EAP 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Fryc committed May 15, 2013
1 parent a618cd5 commit 74b7311
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Framework tests allow you to run a set of Arquillian-based tests using the Graph
The supported container matrix is:

* JBoss AS 7.1
* JBoss EAP 6.1
* TomEE 1.5
* GlassFish 3.1
* Tomcat 6
Expand Down
12 changes: 12 additions & 0 deletions buildhive-settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,18 @@
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>jboss-eap-earlyaccess</id>
<name>JBoss EAP Early Access</name>
<url>http://maven.repository.redhat.com/earlyaccess/all/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
Expand Down
29 changes: 29 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,35 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>jbosseap-managed-6-1</id>
<activation>
<property>
<name>integration</name>
<value>jbosseap61</value>
</property>
</activation>
<properties>
<version.jbosseap61>7.2.0.Alpha1-redhat-4</version.jbosseap61>
<arquillian.launch.jbossas71>true</arquillian.launch.jbossas71>
<arquillian.container.home>${project.build.directory}/jboss-eap-6.1</arquillian.container.home>
<arquillian.container.distribution>org.jboss.as:jboss-as-dist:zip:${version.jbosseap61}</arquillian.container.distribution>
</properties>
<dependencies>
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-arquillian-container-managed</artifactId>
<version>7.2.0.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-controller-client</artifactId>
<version>7.2.0.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>jbosseap-remote-6-1</id>
<dependencies>
Expand Down

0 comments on commit 74b7311

Please sign in to comment.