Skip to content

Commit

Permalink
Merge pull request #8312 from stuartwdouglas/WFLY-5220
Browse files Browse the repository at this point in the history
WFLY-5220 When -Dtest= is used just run the standalone-full.xml profile
  • Loading branch information
n1hility committed Oct 21, 2015
2 parents 760a422 + 1a6c923 commit b29ba43
Showing 1 changed file with 29 additions and 26 deletions.
55 changes: 29 additions & 26 deletions testsuite/integration/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -378,32 +378,35 @@
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>basic-integration-default-full.surefire</id>
<phase>test</phase>
</execution>
<execution>
<id>basic-integration-default-web.surefire</id>
<phase>none</phase>
</execution>
<execution>
<id>basic-integration-2nd.surefire</id>
<phase>none</phase>
</execution>
<execution>
<id>basic-integration-ldap.surefire</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>basic-integration-default-full.surefire</id>
<phase>test</phase>
<configuration>
<includes>
<include>**</include>
</includes>
</configuration>
</execution>
<execution>
<id>basic-integration-default-web.surefire</id>
<phase>none</phase>
</execution>
<execution>
<id>basic-integration-2nd.surefire</id>
<phase>none</phase>
</execution>
<execution>
<id>basic-integration-ldap.surefire</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

Expand Down

0 comments on commit b29ba43

Please sign in to comment.