使用 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.jarnet/sf/antcontrib/antcontrib.properties

当我检查 的值时,我看不到任何引用,这可能是问题所在吗?为什么当它们被定义为依赖关系时不出现?maven.compile.classpathmaven.compile.classpathmaven.compile.classpathantcontribantcontrib


答案 1

我认为添加蚂蚁来编译类路径以运行maven插件不是一个好主意。

我使用Maven 3.0.4,它通过为ant-contrib标签指定命名空间来工作,例如:

<configuration>
  <target>
    <echo message="The first five letters of the alphabet are:"/>
    <ac:for list="a,b,c,d,e" param="letter" xmlns:ac="antlib:net.sf.antcontrib">
      <sequential>
        <echo>Letter @{letter}</echo>
      </sequential>
    </ac:for>
  </target>
</configuration>

我的依赖关系:maven-antrun-plugin

<dependencies>
  <dependency>
    <groupId>ant-contrib</groupId>
    <artifactId>ant-contrib</artifactId>
    <version>1.0b3</version>
    <exclusions>
      <exclusion>
        <groupId>ant</groupId>
        <artifactId>ant</artifactId>
      </exclusion>
    </exclusions>
  </dependency>
  <dependency>
    <groupId>org.apache.ant</groupId>
    <artifactId>ant-nodeps</artifactId>
    <version>1.8.1</version>
  </dependency>
</dependencies>

答案 2

我发现你需要在插件中包含ant-contrib依赖关系,这将使taskdef标签能够找到antcontrib.properties。

  <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <dependencies>
                <dependency>
                    <groupId>ant-contrib</groupId>
                    <artifactId>ant-contrib</artifactId>
                    <version>20020829</version>
                </dependency>
            </dependencies>
            <executions>
                <execution>
                    <id>copy-and-rename-template-files</id>
                    <phase>prepare-package</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <configuration>
                        <target name = "copy-and-rename-template-files">
                            <taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
                            <if>
                                <available file="src/main/resources/docker/templates" type="dir"/>
                                <then>
                                    <copy todir="${project.build.directory}/docker">
                                        <fileset dir="src/main/resources/docker/templates">
                                            <include name="**/*"/>
                                        </fileset>
                                    </copy>


                                    <move todir="${project.build.directory}/docker">
                                        <fileset dir="${project.build.directory}/docker">
                                            <include name="*"/>
                                        </fileset>
                                        <mapper>
                                            <regexpmapper from="(.*)project(.*)" to="\1${project.artifactId}\2"/>
                                        </mapper>
                                    </move>
                                </then>

                                <else>
                                    <echo>src/main/resources/docker/templates does not exist, skipping processing docker templates</echo>
                                </else>
                            </if>
                        </target>
                    </configuration>
                </execution>
            </executions>
        </plugin>

推荐