是否可以生成一个统一的脚本,包括所有类似于maven有效pom的导入?

时间:2012-11-06 17:42:27

标签: ant

我有一个ant脚本,可以导入其他脚本,这些脚本会导入其他脚本,这些脚本会导致可能发生定义的网页。

蚂蚁可以拉入所有定义并输出一个文件,就像maven的help:effective-pom一样吗?

我想将此作为输出文件添加到我的构建中,以使调试更容易。

1 个答案:

答案 0 :(得分:0)

您可以创建另一个将创建该类文件的目标。例如,它看起来像这样:

main build.xml做了一些工作,也可以生成有效的构建:

<project name="testxml" default="build">

    <import file="build1.xml" />
    <import file="build2.xml" />

    <target name="build">
        <echo>build project</echo>
    </target>

    <target name="effective.build">
        <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="C:\Program Files (x86)\groovy-2.1.4\embeddable\groovy-all-2.1.4.jar" />
        <groovy>
            def regex = ~/import file="(.*)"/
            def buildXmlContent = new File('build.xml').text
            new File('build.xml').eachLine {
                line -> regex.matcher(line).find() {
                    def file = new File(it[1])
                    if (file.exists()) {
                        def replacement = file.getText().replaceAll(/&lt;project.*/, '').replaceAll(/&lt;\/project.*/, '')
                        buildXmlContent = buildXmlContent.replaceFirst(/&lt;import.*/, replacement)
                    }
                }
            }
            new File('build.effective.xml') &lt;&lt; buildXmlContent
        </groovy>
    </target>

</project>

为测试创建了两个build.xml:

<project name="testxml2" default="build">
    <target name="clean">
        <echo>clean project</echo>
    </target>
</project>

<project name="testxml1" default="build">
    <target name="test">
        <echo>test project</echo>
    </target>
</project>

如果您要运行ant effective.build,您将获得包含此内容的新build.effective.xml文件:

<project name="testxml" default="build">


    <target name="test">
        <echo>test project</echo>
    </target>


    <target name="clean">
        <echo>clean project</echo>
    </target>


    <target name="build">
        <echo>build project</echo>
    </target>

    <target name="effective.build">
        <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="C:\Program Files (x86)\groovy-2.1.4\embeddable\groovy-all-2.1.4.jar" />
        <groovy>
            import java.util.regex.Pattern

            def regex = ~/import file="(.*)"/
            def buildXmlContent = new File('build.xml').text
            new File('build.xml').eachLine {
                line -> regex.matcher(line).find() {
                    def file = new File(it[1])
                    if (file.exists()) {
                        def replacement = file.getText().replaceAll(/&lt;project.*/, '').replaceAll(/&lt;\/project.*/, '')
                        buildXmlContent = buildXmlContent.replaceFirst(/&lt;import.*/, replacement)
                    }
                }
            }
            new File('build.effective.xml') &lt;&lt; buildXmlContent
        </groovy>
    </target>

</project>

我为此选择了groovy(因为我实际上是学习它),但你可以用另一种语言创建它。您还可以将此groovy代码编译为ant任务并将其用作新任务,例如<effectiveant outfile="build.effective.xml">。我的例子并不完美,但它显示了其中一个解决方案。