当我的JAR位于类路径上时,为什么Ant会说“ NoClassDefFound”?

当我的JAR位于类路径上时,为什么Ant会说“ NoClassDefFound”?,第1张

当我的JAR位于类路径上时,为什么Ant会说“ NoClassDefFound”?

您已经设置了编译类路径,但是App.jar不包括您的库(仅包含您编译的类)或清单类路径。

您需要执行以下 *** 作:

<target name="jar">    <mkdir dir="${jar.dir}" />    <manifestclasspath property="manifest.classpath" jarfile="${jar.dir}/App.jar">      <classpath refid="classpath" />    </manifestclasspath>    <jar destfile="${jar.dir}/App.jar" basedir="${classes.dir}">        <manifest> <attribute name="Main-Class" value="main.App" /> <attribute name="Class-Path" value="${manifest.classpath}" />.        </manifest>    </jar></target>

另请参见ant
manifestclasspath任务



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5507537.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存