私がすることができます
build.xml
を使用して Maven からANT を実行しant run plugin
ます。
じぶんのpom.xml
<target>
<property name="src.dir" location="my_project_folder_location"/>
<subant>
<fileset dir="${src.dir}" includes="**/build.xml"/>
</subant>
</target>
これはANTを実行しますbuild.xml
<project name="*ant_test" basedir=".">
<copy overwrite="true" force="true" verbose="true" todir="to_folder">
<fileset dir="from_folder" />
</copy>
</project>
あるフォルダーから別のフォルダーにコピーするタスクを実行します。
私がする必要があるのは:
これを newbuild.xml
で実行し<target>
ます。
<project name="*ant_test" basedir=".">
<target name="onlyCopy">
<copy overwrite="true" force="true" verbose="true" todir="to_folder">
<fileset dir="from_folder" />
</copy>
</target>
</project>
でどのような変更を行う必要がありますかpom.xml
編集
この質問との違いは次のとおりです。
build.xml
私が言及したANTで<targer>
。Target では、ANT builtfire からターゲット名を選択することで、独立したタスクを実行できます。