使用 antcontrib <if> 任务通过 maven-antrun-plugin
我的 maven java 项目使用 maven-antrun-plugin 来执行部署.xml ant 脚本来部署我的应用程序。deploy.xml使用该任务,这似乎导致了问题;<if>
[信息]正在执行任务
[taskdef] 无法从 resource net/sf/antcontrib/antlib 加载定义.xml。找不到它。部署:
[INFO] ------------------------------------------------------------------------
[错误] 生成错误
[INFO] ------------------------------------------------------------------------
[INFO] 发生 Ant Build 异常:执行此行时发生以下错误:
E:\My_Workspace\xxxxxx\xxxxxx\xxxxxx\xxxxx\deploy.xml:24:问题:如果原因:名称未定义,则
无法创建任务或键入。
要执行的操作: 请检查拼写。
要执行的操作: 检查是否已声明任何自定义任务/类型。
要执行的操作: 检查是否已发生任何<预设>/<>标记。
这是来自我的pom的antrun插件配置;
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>remote-deploy</id>
<phase>install</phase>
<configuration>
<tasks>
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.plugin.classpath"/>
<property name="compile_classpath" refid="maven.compile.classpath" />
<property name="runtime_classpath" refid="maven.runtime.classpath" />
<property name="plugin_classpath" refid="maven.plugin.classpath" />
<echo message="compile classpath: ${compile_classpath}"/>
<echo message="runtime classpath: ${runtime_classpath}"/>
<echo message="plugin classpath: ${plugin_classpath}"/>
<ant antfile="${basedir}/deploy.xml">
<target name="deploy" />
</ant>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>1.0b3</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-jsch</artifactId>
<version>1.7.1</version>
</dependency>
</dependencies>
</plugin>
..这是我的部署.xml相关部分;
<target name="deploy" if="deploy">
<if> <!-- line 24 -->
<and>
为什么我看我的maven存储库,我可以看到,当我看罐子里面时,我可以看到所以没有问题。ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar
net/sf/antcontrib/antcontrib.properties
当我检查 的值时,我看不到任何引用,这可能是问题所在吗?为什么当它们被定义为依赖关系时不出现?maven.compile.classpath
maven.compile.classpath
maven.compile.classpath
antcontrib
antcontrib