Skip to content

Commit

Permalink
Merge pull request apache#2874 from ayanamist/clean-test-files
Browse files Browse the repository at this point in the history
[ISSUE apache#2872] remove log files created by integration test when mvn clean
  • Loading branch information
duhenglucky committed May 12, 2021
2 parents fb1a254 + cbd1730 commit d411ad9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<filesets>
<fileset>
<includes>
<include>**/it_test.log</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit d411ad9

Please sign in to comment.