2

当我使用 生成 Ant 项目时mvn ant:ant,生成的 Ant 项目不会过滤资源以替换属性标记(例如${property})。有没有一种简单的方法可以做到这一点?

4

1 回答 1

2

ant 插件将根据您的 POM 生成以下文件:

|-- build.xml
|-- maven-build.properties
|-- maven-build.xml

资源过滤发生在“编译”目标中,因此您可以通过将目标复制到 build.xml 并更改其行为来覆盖它的行为。

再次运行 Maven ANT 插件不会覆盖此自定义(仅重新生成 maven-* 文件)。

例子

构建.xml

过滤器集被添加到编译目标内的复制任务中:

<project name="maven-ant-demo" default="package" basedir=".">

  <!-- ====================================================================== -->
  <!-- Import maven-build.xml into the current project                        -->
  <!-- ====================================================================== -->

  <import file="maven-build.xml"/>

  <!-- ====================================================================== -->
  <!-- Help target                                                            -->
  <!-- ====================================================================== -->

  <target name="help">
    <echo message="Please run: $ant -projecthelp"/>
  </target>

  <!-- ====================================================================== -->
  <!-- Override target                                                        -->
  <!-- Copied from "maven-build.xml"                                          -->
  <!-- ====================================================================== -->    
  <target name="compile" depends="get-deps" description="Compile the code">
    <mkdir dir="${maven.build.outputDir}"/>
    <javac destdir="${maven.build.outputDir}" 
           nowarn="false" 
           debug="true" 
           optimize="false" 
           deprecation="true" 
           target="1.1" 
           verbose="false" 
           fork="false" 
           source="1.3">
      <src>
        <pathelement location="${maven.build.srcDir.0}"/>
      </src>
      <classpath refid="build.classpath"/>
    </javac>

    <!--
    Note the filterset. This will perform resource filtering 
    -->
    <copy todir="${maven.build.outputDir}">
      <fileset dir="${maven.build.resourceDir.0}"/>
       <filterset begintoken="${" endtoken="}">
         <filter token="helloworld" value="${helloworld}"/>
       </filterset>
    </copy>
  </target>

</project>
于 2012-08-30T01:09:02.107 回答