我有一个Java项目我正在运行,它使用外部JAR文件。
在Eclipse中,我将JAR文件添加到类构建路径中,一切正常。
但我的问题是:在创建可执行JAR(myPtog.jar)后如何将其添加到我的项目中 我在cmd中运行“ant”但是找不到外部jar文件?
这是我的build.xml:
<project name="" default="dist" basedir=".">
<description>
Ant
</description>
<!-- Set global properties for this build. -->
<property name="src" location="src"/>
<property name="build" location="target"/>
<target name="init">
<tstamp/>
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init" description="compile the source ">
<javac srcdir="${src}" destdir="${build}"/>
</target>
<target name="dist" depends="compile" description="generate the distribution">
<jar jarfile="TPCServer.jar" basedir="${build}">
<manifest>
<attribute name="Main-Class" value="Main1"/>
</manifest>
</jar>
</target>
<target name="clean" description="clean up">
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>
</project>