我有一个build.xml
在命令行上运行良好的 Ant 文件:它编译、构建 JAR,并且我能够从 JAR 中执行 main 方法就好了。该build.xml
文件引用了分散在各处的几个第三方库。构建 JAR 时,脚本不会将所有第三方库包含到 JAR 本身中。相反,它将它们的路径放入 JAR 的清单中。这有助于让我的 JAR 保持苗条和整洁。
我希望能够在 Eclipse 中编辑和调试我的项目,但我找不到一个简单的方法来做到这一点。我可以让我的项目使用 Ant 文件来构建项目,这似乎可行。但是,Eclipse 无法找到第三方库,因此 Eclipse 存在两个问题:
- 它显示(在文本编辑器中)很多编译错误,因为很多类是未定义的,并且
- 它无法执行 JAR。
我可以通过在两个不同的地方(即构建路径 viaProperties->Java Build Path->Libraries
和执行类路径 via Run Configurations->Classpath
)手动指定所有第三方库来解决上述两个问题。但似乎我不必手动执行此操作,因为所有第三方库都已列在我的 JAR 清单中。我究竟做错了什么?
这是我的build.xml
文件:
<!-- Set global properties for this build -->
<property name="src" location="./src" />
<property name="build" location="./build"/>
<property name="dist" location="./dist"/>
<property name="logs" location="./logs"/>
<property name="docs" location="./docs"/>
<property name="jar" location="${dist}/dynamic_analyzer.jar"/>
<property name="lib" location="../../thirdparty/lib"/>
<property name="hive-util" location="../../hive-utils/dist"/>
<property name="hpdb" location="../../hive-db/hpdb/dist"/>
<property name="static" location="../../hive-backend/static_analyzer/dist"/>
<property name="mainclass" value="com.datawarellc.main.DynamicMain"/>
<path id="dep.runtime">
<fileset dir="${lib}" includes="**/*.jar"/>
<fileset dir="${hive-util}" includes="**/*.jar"/>
<fileset dir="${hpdb}" includes="**/*.jar"/>
<fileset dir="${static}" includes="**/*.jar"/>
</path>
<target name="clean">
<delete dir="${build}"/>
<delete dir="${dist}"/>
<delete dir="${docs}"/>
<delete dir="${logs}"/>
</target>
<target name="init">
<tstamp/>
<mkdir dir="${build}"/>
<mkdir dir="${dist}"/>
<mkdir dir="${logs}"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build}" debug="on" includeantruntime="false">
<classpath refid="dep.runtime" />
</javac>
<!-- Debug output of classpath -->
<property name="myclasspath" refid="dep.runtime"/>
<echo message="Classpath = ${myclasspath}"/>
</target>
<target name="jar" depends="compile">
<!-- Put the classpath in the manifest -->
<manifestclasspath property="manifest_cp" jarfile="${jar}" maxParentLevels="10">
<classpath refid="dep.runtime" />
</manifestclasspath>
<jar jarfile="${jar}" basedir="${build}">
<manifest>
<attribute name="Main-Class" value="${mainclass}"/>
<attribute name="Class-Path" value="${manifest_cp}"/>
</manifest>
<zipfileset dir="${src}" includes="**/*.xml" />
</jar>
</target>
${lib}
您可以看到我在几个目录( 、${hive-util}
、${hpdb}
和${static}
)中有第三方库。我使用这些来创建一个path
名为dep.runtime
. 然后我在构建我的 jar 时包含dep.runtime
在清单中。如何让 Eclipsedep.runtime
在执行时对构建路径和类路径使用相同的内容?