Skip to content

Commit

Permalink
RF-14234: added profile for EAP 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiri Stefek committed Feb 15, 2016
1 parent c02e256 commit 3b3fedf
Show file tree
Hide file tree
Showing 4 changed files with 187 additions and 5 deletions.
13 changes: 13 additions & 0 deletions TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The supported container matrix is:
* WildFly 10.0
* JBoss EAP 6.2
* JBoss EAP 6.3
* JBoss EAP 6.4
* Tomcat 7
* Tomcat 8

Expand Down Expand Up @@ -272,6 +273,10 @@ Managed Containers

mvn verify -Dintegration=jbosseap63

### JBoss EAP 6.4 - Managed

mvn verify -Dintegration=jbosseap64

### Tomcat 7 - Managed

mvn verify -Dintegration=tomcat7
Expand Down Expand Up @@ -363,6 +368,14 @@ Profile: `jbosseap-remote-6-3`

mvn verify -Dintegration=jbosseap63-remote

### JBoss EAP 6.4 - Remote

Start: `[jboss-eap-6.4]$ ./bin/standalone.sh`

Profile: `jbosseap-remote-6-4`

mvn verify -Dintegration=jbosseap64-remote

### Tomcat 7/8 - Remote

You need to modify the `conf/tomcat-users.xml` file:
Expand Down
55 changes: 55 additions & 0 deletions examples/photoalbum/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,61 @@ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
</dependency>
</dependencies>
</profile>
<profile>
<id>jbosseap-managed-6-4</id>
<activation>
<property>
<name>integration</name>
<value>jbosseap64</value>
</property>
</activation>
<properties>
<arquillian.launch.jbosseap6>true</arquillian.launch.jbosseap6>
<arquillian.container.home>${project.build.directory}/jboss-eap-6.4</arquillian.container.home>
<arquillian.container.distribution>file:///path/to/jboss-eap-6.4.0.zip</arquillian.container.distribution>
<testCategory.excluded.jsf>AND NOT category.JSF22Only</testCategory.excluded.jsf>
</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-4</id>
<activation>
<property>
<name>integration</name>
<value>jbosseap64-remote</value>
</property>
</activation>
<properties>
<testCategory.excluded.jsf>AND NOT category.JSF22Only</testCategory.excluded.jsf>
</properties>
<dependencies>
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-arquillian-container-remote</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-managed-6-3</id>
<activation>
Expand Down
57 changes: 57 additions & 0 deletions examples/showcase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1184,6 +1184,63 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>jbosseap-managed-6-4</id>
<activation>
<property>
<name>integration</name>
<value>jbosseap64</value>
</property>
</activation>
<properties>
<arquillian.launch.jbosseap6>true</arquillian.launch.jbosseap6>
<arquillian.container.home>${project.build.directory}/jboss-eap-6.4</arquillian.container.home>
<arquillian.container.distribution>file:///path/to/jboss-eap-6.4.0.zip</arquillian.container.distribution>
<testCategory.excluded.jsf>AND NOT category.JSF22Only</testCategory.excluded.jsf>
<showcase.war.classifier>jee6</showcase.war.classifier>
</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-4</id>
<activation>
<property>
<name>integration</name>
<value>jbosseap64-remote</value>
</property>
</activation>
<properties>
<testCategory.excluded.jsf>AND NOT category.JSF22Only</testCategory.excluded.jsf>
<showcase.war.classifier>jee6</showcase.war.classifier>
</properties>
<dependencies>
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-arquillian-container-remote</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-managed-6-3</id>
<activation>
Expand Down
67 changes: 62 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
License along with this software; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
-->
<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/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down Expand Up @@ -246,9 +246,9 @@
<keywords>true</keywords>
<quiet>true</quiet>
<!-- Solves issues related to link lookups for all
modules, even those that do not need it, that
was slowing builds down. If removed review
full build. -->
modules, even those that do not need it, that
was slowing builds down. If removed review
full build. -->
<detectOfflineLinks>false</detectOfflineLinks>
</configuration>
</plugin>
Expand Down Expand Up @@ -1002,6 +1002,63 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>jbosseap-managed-6-4</id>
<activation>
<property>
<name>integration</name>
<value>jbosseap64</value>
</property>
</activation>
<properties>
<arquillian.launch.jbosseap6>true</arquillian.launch.jbosseap6>
<arquillian.container.home>${project.build.directory}/jboss-eap-6.4</arquillian.container.home>
<arquillian.container.distribution>file:///path/to/jboss-eap-6.4.0.zip</arquillian.container.distribution>
<testCategory.excluded.jsf>AND NOT category.JSF22Only</testCategory.excluded.jsf>
<showcase.war.classifier>jbas71</showcase.war.classifier>
</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-4</id>
<activation>
<property>
<name>integration</name>
<value>jbosseap64-remote</value>
</property>
</activation>
<properties>
<testCategory.excluded.jsf>AND NOT category.JSF22Only</testCategory.excluded.jsf>
<showcase.war.classifier>jbas71</showcase.war.classifier>
</properties>
<dependencies>
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-arquillian-container-remote</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>tomcat-remote-7</id>
<activation>
Expand Down

0 comments on commit 3b3fedf

Please sign in to comment.