Ant - Concat来自多个常春藤库的目录中的所有文件

时间:2015-06-30 08:15:15

标签: ant ivy

我使用ANT,我想从多个常春藤库中连接相同的文件。每个文件都可以包含多行。

我还有这个:

<concat destfile="${src}/META-INF/services/org.apache.commons.logging.LogFactory">
    <restrict>
        <archives>
            <zips>
                <fileset refid="ivy.libs" />
            </zips>
        </archives>
        <name name="META-INF/services/org.apache.commons.logging.LogFactory" />
    </restrict>
</concat>

我使用org.apache.commons.logging.LogFactory作为示例文件名,但我想连接META-INF / services目录中的所有文件。我不想为每个可能的文件名写这个块。最好迭代然后在循环中使用带有变量的块。

有什么想法吗?

0 个答案:

没有答案