我有一个专家问题。
我有一个 GWT 项目,它生成一个临时目录 gwt-unitCache 文件夹。我想在构建过程结束时将其删除。
我有这个插件配置:
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<configuration>
<filesets>
<fileset>
<directory>src/main</directory>
<includes>
<directory>gwt-unitCache/**</directory>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
<executions>
<execution>
<id>gwt-unitCache</id>
<phase>install</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
这通过删除 src/main 下自动生成的 gwt-unitCache 文件夹来完成其工作。但是,它也删除了包含类和战争文件的目标文件夹。
我不希望删除目标文件,因此我通过删除部分修改了配置:
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<configuration>
<filesets>
<fileset>
<directory>src/main</directory>
<includes>
<directory>gwt-unitCache/**</directory>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
<executions>
<execution>
<id>gwt-unitCache</id>
<phase>install</phase>
</execution>
</executions>
</plugin>
但这一次它不再起作用了。gwt-unitCache 不会被删除。看起来插件是在构建过程的开始而不是结束时运行的。
我不擅长 Maven。有人可以帮忙吗?我该如何配置它以便:
- gwt-unitCache 在构建过程结束时被删除。
- 不会删除目标文件夹。
我使用命令:maven clean install
建造它。
非常感谢。