我正在 Maven 中的 Ant 任务中复制一些文件,但我无法弄清楚如何告诉 ant 不要记录它正在复制一些文件的事实。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>generateContext</id>
<phase>compile</phase>
<configuration>
<target>
<copy file="src/main/context/context.xml"
toDir="target/context/"
overwrite="true" verbose="false">
<filterset>
<filter token="deploy.path" value="${deploy.path}" />
<filter token="build.env.deployment.war.name"
value="${build.env.deployment.war.name}" />
</filterset>
</copy>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
每次执行任务时,我都会在控制台中看到以下内容:
[INFO] --- maven-antrun-plugin:1.7:run (generateContext) @ jive-web ---
[INFO] Executing tasks
main:
[copy] Copying 1 file to /Users/jmajors/turbinetrunk/jive/jive-web/target/context
根据 ant copy 任务文档,我不会想到我什至需要担心它,因为默认情况下似乎关闭了日志记录,但这似乎不会影响是否记录某些内容。还有其他我应该注意的设置吗?
谢谢,杰里米