我有一个Ant复制任务(在Jenkins构建调用的Maven脚本中定义)看似正确但没有正确复制。任务定义为
<copy todir="./Virgo/config" overwrite="true" verbose="true">
<fileset dir="${config.folder}">
<include name="*.properties, *.xml" />
</fileset>
</copy>
当我运行任务时,我可以看到指定了正确的目录,但复制任务没有选择任何文件。源目录和目标目录都存在,我没有收到任何错误。我所看到的是
14:52:40 [INFO] Executing tasks
14:52:40 [DEBUG] getProperty(ns=null, name=ant.reuse.loader, user=false)
14:52:40 [antlib:org.apache.tools.ant] Could not load definitions from resource org/apache/tools/ant/antlib.xml. It could not be found.
14:52:40 [echo] Copying files from ../com.x.y.z.container.build/config...
14:52:40 fileset: Setup scanner in dir C:\Jenkins\workspace\container-build\com.x.y.z.container.build\config with patternSet{ includes: [*.properties, *.xml] excludes: [] }
14:52:40 [INFO] Executed tasks
我尝试将文件添加到源目录,使源文件比目标文件更新,甚至删除目标目录中的文件。困扰我的是,fileset
似乎与任何文件都不匹配,即使路径正确。有没有人见过这种行为?
答案 0 :(得分:4)
来自Ant手册中的PatternSet部分:http://ant.apache.org/manual/Types/patternset.html
请注意,虽然includes和excludes属性接受以逗号或空格分隔的多个元素,但嵌套的<include>
和<exclude
&gt;元素期望其name属性包含单个模式。
您可以将脚本更改为
<copy todir="./Virgo/config" overwrite="true" verbose="true">
<fileset dir="${config.folder}">
<include name="*.properties" />
<include name="*.xml" />
</fileset>
</copy>