gpt4 book ai didi

java - ant 任务将属性文件复制到 java 构建目录中的相应位置

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:43:15 26 4
gpt4 key购买 nike

好吧,我被难住了。

我有一个 Java 树,它看起来像一个非常典型的 Eclipse Java 构建:

myproject
src
com
example
test
// Java files in com.example.test here
bin
com
example
test
// Compiled class files will go here

现在我在 myproject/src/com/example/test 中有一个 MyClass.properties 文件以及源 Java 文件。如何编写适当的 ant 任务以将源树中所有已更改的 .properties 文件复制到构建 (myproject/bin) 树中的相应位置?

(其中较简单的一半是进行实际复制;我猜其中较难的一半是检查依赖项)

最佳答案

怎么样:

<copy todir="myproject/bin">
<fileset dir="myproject/src" includes="**/*.properties"/>
</copy>

关于java - ant 任务将属性文件复制到 java 构建目录中的相应位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/775279/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com