ant任务检索Maven配置文件依赖关系

我有一个自动生成的蚂蚁文件的Java项目。 所以我不得不用蚂蚁来建立这个项目。 我需要添加一些新的库,并使用下面的maven pom文件。 然后我使用一个ant任务来检索pom依赖关系并将它们复制到一个lib文件夹中。 但是下面的ant任务会遗漏pom中的配置文件依赖关系。 我想要做的是一个蚂蚁任务,以便基于当前的操作系统,它将包括操作系统相应的xurlrunner jar。 这是由maven在pom中完成的,但我怎么用蚂蚁做到这一点?

---蚂蚁目标任务----

<typedef resource="org/apache/maven/artifact/ant/antlib.xml"
             uri="urn:maven-artifact-ant"
             classpathref="maven-ant-tasks.classpath"/>

    <target name="retrieve-dependencies">
        <artifact:dependencies filesetId="dependency.fileset"
                               sourcesFilesetId="profiles.dependency.fileset"
                               versionsId="dependency.versions">
            <pom file="${basedir}/nbproject/pom.xml"/>
        </artifact:dependencies>

        <delete dir="${lib.dir}/browser"/>
        <copy todir="${lib.dir}/browser">
            <fileset refid="dependency.fileset"/>
            <mapper classpathref="maven-ant-tasks.classpath" classname="org.apache.maven.artifact.ant.VersionMapper"
                    from="${dependency.versions}" to="flatten"/>
        </copy>

    </target>

--- pom.xml的-------

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.drOffice.browser</groupId>
  <artifactId>embedded-browser</artifactId>
  <version>0.0.1-SNAPSHOT</version>
   <build>
                <plugins>
                        <plugin>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <configuration>
                                        <compilerVersion>1.6</compilerVersion>
                                        <encoding>UTF-8</encoding>
                                        <source>1.6</source>
                                        <target>1.6</target>
                                        <showDeprecation>true</showDeprecation>
                                </configuration>
                        </plugin>
                        <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>

                </plugins>
        </build>
        <repositories>
                <repository>
                        <id>atomation-repository</id>
                        <name>atomation maven repository</name>
                        <url>http://atomation-repository.googlecode.com/svn/trunk</url>
                        <releases>
                                <enabled>true</enabled>
                                <updatePolicy>always</updatePolicy>
                                <checksumPolicy>warn</checksumPolicy>
                        </releases>
                        <snapshots>
                                <enabled>true</enabled>
                                <updatePolicy>always</updatePolicy>
                                <checksumPolicy>warn</checksumPolicy>
                        </snapshots>
                        <layout>default</layout>
                </repository>
        </repositories>
        <dependencies>
                <dependency>
                        <groupId>ru.atomation.jbrowser</groupId>
                        <artifactId>jbrowser</artifactId>
                        <version>1.9</version>
                        <scope>compile</scope>
                </dependency>
        </dependencies>

        <profiles>

            <profile>
                        <id>generic</id>
                        <activation>
                                <activeByDefault></activeByDefault>
                        </activation>
                </profile>
                <profile>
                        <id>linux</id>
                        <dependencies>
                                <dependency>
                                        <groupId>ru.atomation.native</groupId>
                                        <artifactId>xulrunner-linux</artifactId>
                                        <version>1.9</version>
                                </dependency>
                        </dependencies>
                </profile>
                <profile>
                        <id>solaris</id>
                        <dependencies>
                                <dependency>
                                        <groupId>ru.atomation.native</groupId>
                                        <artifactId>xulrunner-solaris</artifactId>
                                        <version>1.9</version>
                                </dependency>
                        </dependencies>
                </profile>
                <profile>
                        <id>macosx</id>
                        <dependencies>
                                <dependency>
                                        <groupId>ru.atomation.native</groupId>
                                        <artifactId>xulrunner-macosx</artifactId>
                                        <version>1.9</version>
                                </dependency>
                        </dependencies>
                </profile>
                <profile>
                        <id>windows</id>
                        <dependencies>
                                <dependency>
                                        <groupId>ru.atomation.native</groupId>
                                        <artifactId>xulrunner-windows</artifactId>
                                        <version>1.9</version>
                                </dependency>
                        </dependencies>
                </profile>
        </profiles>
</project>

如果你只使用Ant来复制依赖关系,我认为使用maven来复制这些依赖关系要简单得多。

如果你真的想使用Ant,你可以简单地在你的pom中(在配置文件中)定义属性,并在Ant脚本中使用它。

就像是

<profile>
     <id>linux</id>
     <properties>
         <custom.property>linux</custom.property>
     <properties>

.....
链接地址: http://www.djcxy.com/p/44321.html

上一篇: ant task retrieve maven profile dependency

下一篇: Mavenizing ANT project