我真的是一个蚂蚁新手。这是我的问题:我在netbeans中有一个项目,它使用了当前存在于/lib目录中的几个外部库。我希望我的netbeans在尝试构建项目时动态获取这些库的最新版本。这是可行的还是我走错了路?我有每个外部库的url,我需要在哪里指定这些为了这个实验的工作?任何帮助对此表示感谢,我完全不知道如何做到这一点!
感谢你好,我已经检查了你所有的答案,并搜索了更多的答案。现在的问题是,尽管maven看起来不可思议,但我的项目已经使用了Ant,我不知道如何在netbeans上从Ant迁移到maven,也不知道这有多困难。任何帮助吗?或者我也可以使用Apache Ivy来实现这个目的。给你一个我正在使用的jar的例子:Apache commons jar
你们能指导我怎么做吗?这个jar包在一个。zip文件中,所以我猜不容易检测到最新版本。
get任务是使用标准ANT完成此任务的唯一方法。
现代开源开发的问题通常是一个jar依赖于其他几个jar,当一个jar还必须跟踪版本兼容性时,如果不是不可能的话,这可能会变得很难跟踪。
Maven是一种比ANT更早的构建技术,并且具有针对第三方构建依赖项的依赖管理特性。这个功能可以通过使用Apache ivy插件在ANT中复制。
<标题> 例子Java项目演示ivy的使用:
├── build.xml
├── ivy.xml
└── src
├── main
│ ├── java
│ │ └── org
│ │ └── demo
│ │ └── App.java
│ └── resources
│ └── log4j.properties
└── test
└── java
└── org
└── demo
└── AppTest.java
有一个额外的"ivy.xml"文件,其中列出了第三方依赖项。默认情况下,这些jar将从Maven中央存储库下载,Maven中央存储库是最大的开源java jar存储库。
中
<ivy-module version="2.0">
<info organisation="com.myspotontheweb" module="demo"/>
<configurations>
<conf name="compile" description="Required to compile application"/>
<conf name="runtime" description="Additional run-time dependencies" extends="compile"/>
<conf name="test" description="Required for test only" extends="runtime"/>
</configurations>
<dependencies>
<!-- compile dependencies -->
<dependency org="org.slf4j" name="slf4j-api" rev="1.7.5" conf="compile->default"/>
<!-- runtime dependencies -->
<dependency org="org.slf4j" name="slf4j-log4j12" rev="1.7.5" conf="runtime->default"/>
<!-- test dependencies -->
<dependency org="junit" name="junit" rev="4.11" conf="test->default"/>
</dependencies>
</ivy-module>
指出:
- 这个例子使用了slf4j日志库,它使您能够在运行时通过添加不同的jar来选择实际的实现。ivy文件声明了3个"配置",它们是依赖项的逻辑分组。每个依赖项都有一个"conf"映射,告诉ivy这个jar将被用来做什么。在这个例子中,我们的代码将针对slf4j-api jar编译,并将被配置为在运行时使用log4j。
- junit是ANT需要的第三方jar的一个例子。这些也可以通过ivy下载和管理。
build . xml
<project name="demo" default="build" xmlns:ivy="antlib:org.apache.ivy.ant">
<!--
================
Build properties
================
-->
<property name="src.dir" location="src/main/java"/>
<property name="resources.dir" location="src/main/resources"/>
<property name="test.src.dir" location="src/test/java"/>
<property name="build.dir" location="build"/>
<property name="classes.dir" location="${build.dir}/classes"/>
<property name="test.classes.dir" location="${build.dir}/test-classes"/>
<property name="ivy.reports.dir" location="${build.dir}/ivy-reports"/>
<property name="test.reports.dir" location="${build.dir}/test-reports"/>
<property name="dist.dir" location="${build.dir}/dist"/>
<property name="jar.main.class" value="org.demo.App"/>
<property name="jar.file" value="${dist.dir}/${ant.project.name}.jar"/>
<!--
===========
Build setup
===========
-->
<target name="bootstrap" description="Install ivy">
<mkdir dir="${user.home}/.ant/lib"/>
<get dest="${user.home}/.ant/lib/ivy.jar" src="http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.3.0/ivy-2.3.0.jar"/>
</target>
<target name="resolve" description="Use ivy to resolve classpaths">
<ivy:resolve/>
<ivy:report todir='${ivy.reports.dir}' graph='false' xml='false'/>
<ivy:cachepath pathid="compile.path" conf="compile"/>
<ivy:cachepath pathid="test.path" conf="test"/>
</target>
<!--
===============
Compile targets
===============
-->
<target name="resources" description="Copy resources into classpath">
<copy todir="${classes.dir}">
<fileset dir="${resources.dir}"/>
</copy>
</target>
<target name="compile" depends="resolve,resources" description="Compile code">
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${classes.dir}" includeantruntime="false" debug="true" classpathref="compile.path"/>
</target>
<target name="compile-tests" depends="compile" description="Compile tests">
<mkdir dir="${test.classes.dir}"/>
<javac srcdir="${test.src.dir}" destdir="${test.classes.dir}" includeantruntime="false" debug="true">
<classpath>
<path refid="test.path"/>
<pathelement path="${classes.dir}"/>
</classpath>
</javac>
</target>
<!--
============
Test targets
============
-->
<target name="test" depends="compile-tests" description="Run unit tests">
<mkdir dir="${test.reports.dir}"/>
<junit printsummary="yes" haltonfailure="yes">
<classpath>
<path refid="test.path"/>
<pathelement path="${classes.dir}"/>
<pathelement path="${test.classes.dir}"/>
</classpath>
<formatter type="xml"/>
<batchtest fork="yes" todir="${test.reports.dir}">
<fileset dir="${test.src.dir}">
<include name="**/*Test*.java"/>
<exclude name="**/AllTests.java"/>
</fileset>
</batchtest>
</junit>
</target>
<!--
=====================
Build and run targets
=====================
-->
<target name="build" depends="test" description="Create executable jar archive">
<ivy:retrieve pattern="${dist.dir}/lib/[artifact]-[revision](-[classifier]).[ext]" conf="runtime"/>
<manifestclasspath property="jar.classpath" jarfile="${jar.file}">
<classpath>
<fileset dir="${dist.dir}/lib" includes="*.jar"/>
</classpath>
</manifestclasspath>
<jar destfile="${jar.file}" basedir="${classes.dir}">
<manifest>
<attribute name="Main-Class" value="${jar.main.class}" />
<attribute name="Class-Path" value="${jar.classpath}" />
</manifest>
</jar>
</target>
<target name="run" depends="build" description="Run code">
<java jar="${jar.file}" fork="true"/>
</target>
<!--
=============
Clean targets
=============
-->
<target name="clean" description="Cleanup build files">
<delete dir="${build.dir}"/>
</target>
<target name="clean-all" depends="clean" description="Additionally purge ivy cache">
<ivy:cleancache/>
</target>
</project>
注意事项:
- ivy jar默认不随ant一起发布。特殊的"bootstrap"目标用于将其下载到ANT用于其插件的位置。
- "resolve"目标包含ivy任务,用于下载(和缓存)依赖项,生成有关这些文件的有用报告,并创建可用于编译和测试的ANT路径。
- "build"目标包含ivy"retrieve"任务,该任务将依赖项放置到分发目录中。manifestclasspath可以使用这些来为这个构建创建的可执行jar文件生成正确的"Class-path"清单项。
作为第一个建议,我想说ant可能不是执行此操作的最佳工具。Maven正在正确地做这件事(至少如果您的外部库作为SNAPSHOT发布在(公共)Maven repo中)。此外,maven和netbeans可以很好地协同工作。
但是,如果您需要使用ant,您可能应该看看ant get任务。如果远程副本比本地副本更新(带有usetimestamp属性),则允许下载文件。所以像这样的代码将在需要时执行下载:
<get src="http://some.url/somelib.jar"
dest="lib/somelib.jar"
usetimestamp="true"/>