Skip to content

Commit

Permalink
add build step to prevent old test-project artifacts from lingering a…
Browse files Browse the repository at this point in the history
…round

(cherry picked from commit 22ff999)
  • Loading branch information
snazy authored and gsmet committed Feb 13, 2024
1 parent d291b4e commit d97cc68
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions integration-tests/gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,26 @@
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>clean-generated-gradle-projects</id>
<phase>generate-resources</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>target/classes</directory>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
Expand Down

0 comments on commit d97cc68

Please sign in to comment.