我想从tomcat8+版本的temp文件夹中删除所有文件和子目录。在我的应用程序中,activemq是集成的,它将在服务器启动时在tomcat的temp文件夹中创建一个文件夹。因此,我想在服务器启动时通过activemq创建另一个文件夹之前清除临时文件夹。有没有任何方法来定义maven插件来实现这一点,或者有其他方法来实现这一点?
r1zhe5dt1#
正如我所理解的,您需要清理没有暴露给maven的目录。所以检查一下maven的干净插件
<plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> <configuration> <filesets> <fileset> <directory>some/relative/path</directory> <includes> <include>**/*.tmp</include> <include>**/*.log</include> </includes> <excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude> </excludes> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </plugin>
1条答案
按热度按时间r1zhe5dt1#
正如我所理解的,您需要清理没有暴露给maven的目录。
所以检查一下maven的干净插件