我从另一个开发人员那里继承了一个项目,其中有一点pom.xml
我不太明白。如下:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>filter</id>
<phase>generate-resources</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
有人可以阐明它正在尝试做什么吗?我认为这是在说“在运行任何生成资源阶段时进行过滤”。这个对吗?