- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基于http://ant.apache.org/manual/Types/mapper.html
这是我的目标:
<target name="ms.copy-example">
<copy todir="${ms.custom}">
<fileset dir="${ms.example}">
<include name="build.xml" />
</fileset>
<scriptmapper language="javascript">
self.addMappedName("dir1/"+source);
self.addMappedName("dir2/"+source);
self.addMappedName("dir3/"+source);
</scriptmapper>
</copy>
</target>
我正在尝试将一个文件复制到三个位置。我不必使用“脚本映射器”来执行此操作,但我没有看到任何其他方法可以执行此操作。但实际情况是,它仅将文件复制到列表中的第一个目录 (dir1),而不是其他两个目录(dir2、dir3)。
有什么建议吗?
最佳答案
scriptmapper
正在工作,但是默认情况下,copy
任务仅复制到一个(即第一个映射的)目标。要使您的示例正常工作,请添加 enablemultiplemappings="true"
或类似于副本的内容:
<copy todir="${ms.custom}" enablemultiplemappings="true">
来自copy
任务选项enablemultiplemappings
的文档:
If true the task will process to all the mappings for a given source path. If false the task will only process the first file or directory. This attribute is only relevant if there is a mapper subelement. (since Ant 1.6.)
关于java - Ant scriptmapper 不像宣传的那样工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2766104/
基于http://ant.apache.org/manual/Types/mapper.html 这是我的目标: self.addMappedNa
我是一名优秀的程序员,十分优秀!