0

我正在尝试修改 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,但实际上不知道如何......有什么想法吗?

4

1 回答 1

1

您需要添加一个 post-jar 部分。这是一个例子:

<target name="-post-jar">
  <jar update="true" destfile="${dist.jar}">
    <!-- Path to your jar. -->
    <zipfileset src="/home/user/javalibs/myjar.jar"/>
 </jar>
</target>
于 2013-02-11T21:05:34.220 回答