Skip to content

Commit

Permalink
Merge pull request wildfly#17786 from bstansberry/fix_maven_warn
Browse files Browse the repository at this point in the history
[WFLY-19201] Fix the maven warn about duplicate plugin declaration
  • Loading branch information
bstansberry authored Apr 10, 2024
2 parents ff0789b + a9096ed commit c035388
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions testsuite/integration/clustering/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1507,21 +1507,7 @@
</properties>
<build>
<plugins>
<!-- Disable the standard copy-based provisioning -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>ts.copy-wildfly</id>
<goals>
<goal>copy-resources</goal>
</goals>
<phase>none</phase>
</execution>
</executions>
</plugin>
<!-- Instead provision slimmed installations -->
<!-- Provision slimmed installations -->
<plugin>
<groupId>org.wildfly.glow</groupId>
<artifactId>wildfly-glow-arquillian-plugin</artifactId>
Expand Down Expand Up @@ -2499,6 +2485,14 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<!-- Disable the standard copy-based provisioning -->
<execution>
<id>ts.copy-wildfly</id>
<goals>
<goal>copy-resources</goal>
</goals>
<phase>none</phase>
</execution>
<!-- Copy users and roles config from shared resources. -->
<execution>
<id>ejb-lite.ts.config-as.copy-mgmt-users</id>
Expand Down

0 comments on commit c035388

Please sign in to comment.