我正在尝试使用Maven和Ant在eclipse中为Java项目创建构建文件。但是,我无法使maven-ant-tasks依赖工作。任何人都可以帮我解决这个问题吗?也许我的网址和文件错了。这是:
<property name="maven.ant.dir" value="http://apache.hoxt.com/maven/binaries"/>
<property name="maven.ant.file" value="http://apache.hoxt.com/maven/binaries/maven-ant-tasks-2.1.3.jar"/>
答案 0 :(得分:1)
以下是Maven ANT任务的工作原理
<project .. xmlns:artifact="antlib:org.apache.maven.artifact.ant">
..
<target name="retrieve" description="Retrieve dependencies using Maven">
<artifact:dependencies filesetId="compile.fileset" useScope="compile">
<pom file="${pom.dir}/pom.xml"/>
</artifact:dependencies>
<copy todir="${retrieve.dir}/compile">
<fileset refid="compile.fileset" />
<mapper type="flatten" />
</copy>
..
文档为here