Skip to content

Commit

Permalink
Configure additional input for cached plugins
Browse files Browse the repository at this point in the history
Add the dumped dependencies as an input for Surefire, Failsafe and the
Quarkus Maven plugin.
  • Loading branch information
gsmet committed Feb 1, 2024
1 parent 87a8ea6 commit 0ecc4f8
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions independent-projects/parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,63 @@
</runtimeClassPath>
</normalization>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<inputs>
<fileSets>
<fileSet>
<name>dependency-checksums</name>
<paths>
<path>${project.build.directory}</path>
</paths>
<includes>
<include>quarkus-*-dependency-checksums.txt</include>
</includes>
<normalization>RELATIVE_PATH</normalization>
</fileSet>
</fileSets>
</inputs>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<inputs>
<fileSets>
<fileSet>
<name>dependency-checksums</name>
<paths>
<path>${project.build.directory}</path>
</paths>
<includes>
<include>quarkus-*-dependency-checksums.txt</include>
</includes>
<normalization>RELATIVE_PATH</normalization>
</fileSet>
</fileSets>
</inputs>
</plugin>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<executions>
<execution>
<id>default</id>
<inputs>
<fileSets>
<fileSet>
<name>dependency-checksums</name>
<paths>
<path>${project.build.directory}</path>
</paths>
<includes>
<include>quarkus-*-dependency-checksums.txt</include>
</includes>
<normalization>RELATIVE_PATH</normalization>
</fileSet>
</fileSets>
</inputs>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
Expand Down

0 comments on commit 0ecc4f8

Please sign in to comment.