Skip to content

Commit

Permalink
[WFCORE-6892] Remove duplicate plugin declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
yersan committed Jul 10, 2024
1 parent 9e88b10 commit 36ddb5b
Showing 1 changed file with 16 additions and 23 deletions.
39 changes: 16 additions & 23 deletions testsuite/unstable-api-annotation/feature-pack/feature-pack/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</properties>

<build>
<finalName>${artifactId}-${project.version}</finalName>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<!-- Feature pack generation is vulnerable to leftover files in the target
Expand Down Expand Up @@ -83,6 +83,21 @@
</resources>
</configuration>
</execution>
<execution>
<id>copy-annotation-index</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/resources/packages/unstable-api-annotation-index.wildfly-core-testsuite-unstable-api-annotation-feature-pack/content/</outputDirectory>
<resources>
<resource>
<directory>${basedir}/target/index/</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand All @@ -102,28 +117,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-annotation-index</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/resources/packages/unstable-api-annotation-index.wildfly-core-testsuite-unstable-api-annotation-feature-pack/content/</outputDirectory>
<resources>
<resource>
<directory>${basedir}/target/index/</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit 36ddb5b

Please sign in to comment.