我正在尝试修改 build.xml 文件以指定要添加到最终编译的 jar 的外部 jar 。
这是我的 build.xml 文件
<project name="cmmdcservice" default="all">
<property name="kf.dir" location="E:\knopflerfish_osgi_3.4.0"/>
<property name="framework.jar"
location="${kf.dir}/osgi/framework.jar"/>
<target name="all" depends="init,compile,jar"/>
<target name="init">
<mkdir dir="out/classes"/>
</target>
<target name="compile">
<javac destdir = "out/classes"
debug = "on"
srcdir = "src"
includeantruntime="false">
<classpath>
<pathelement location="${framework.jar}"/>
</classpath>
</javac>
</target>
<target name="jar">
<jar basedir = "out/classes"
jarfile = "out/${ant.project.name}.jar"
compress = "true"
includes = "**/*"
manifest = "manifest.mf"/>
</target>
<target name="clean">
<delete dir = "out"/>
</target>
</project>
我想在 target name="jar" 部分我需要参考我的外部 jar,但实际上不知道如何......有什么想法吗?