是否可以使用 Ant 将文件复制到现有 EAR 中?
有没有什么方法、任何任务可以直接执行此指令,或者如果没有顺序:“unzip”、“copy”和“jar”任务就不可能执行此指令?
我确实尝试直接使用任务副本,但没有成功...
<copy todir="${ear.project}/servico.jar/META-INF" overwrite="true">
<fileset dir="${dir.resources}/r2">
<include name="ejb-jar.xml"/>
</fileset>
<flattenmapper/>
</copy>
拜托,我正在等待一些帮助。
Is there any way, any task to make this instruction directly or it is impossible to make this without the sequence: "unzip", "copy" and "jar" tasks ?
I did tried directly with task copy but without success...
<copy todir="${ear.project}/servico.jar/META-INF" overwrite="true">
<fileset dir="${dir.resources}/r2">
<include name="ejb-jar.xml"/>
</fileset>
<flattenmapper/>
</copy>
Please, i´m waiting for some help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EAR 和 Jar 任务,就像更通用的 Zip 任务,有一个更新属性,当设置为 true 时,只会更新而不是覆盖现有存档。
The EAR and Jar tasks, like the more general Zip task, have an update attribute which when set to true will simply update rather than overwrite an existing archive.