Skip to content

Commit

Permalink
Probe tests - add WF-9 profile.
Browse files Browse the repository at this point in the history
  • Loading branch information
tremes authored and jharting committed Apr 1, 2015
1 parent 846ab5b commit 633d279
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions probe/integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,53 @@
</plugins>
</build>
</profile>
<!-- WildFly 9.x - Managed -->
<profile>
<id>wildfly9</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>incontainer</name>
<value>wildfly9</value>
</property>
</activation>

<dependencies>
<dependency>
<groupId>org.wildfly.arquillian</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.jboss.logmanager</groupId>
<artifactId>log4j-jboss-logmanager</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<arquillian.xml>arquillian.xml</arquillian.xml>
<jacoco.agent>${jacoco.agent}</jacoco.agent>
<additional.vm.args>${additional.vm.args}</additional.vm.args>
<org.jboss.remoting-jmx.timeout>360</org.jboss.remoting-jmx.timeout>
</systemProperties>
<test>${test}</test>
<parallel>none</parallel>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>tomcat</id>
<activation>
Expand Down

0 comments on commit 633d279

Please sign in to comment.