gpt4 book ai didi

java - 生成带有库的 jar 文件,但在 Eclipse 中没有可运行的 jar 文件

转载 作者:行者123 更新时间:2023-12-02 05:31:55 25 4
gpt4 key购买 nike

我找不到生成包含项目中所有 java 源文件、资源和库的 jar 文件的选项。有一种方法可以使用可运行的 jar 文件来完成此操作,但这不是我正在寻找的。

最佳答案

你可以用 Ant 来做到这一点。无需插件,可在 Luna 中运行。

构建.xml:

<project name="makejar" default="jar">
<property name="src.dir" location="src"/>
<property name="build.dir" location="build"/>
<property name="lib.dir" location="lib"/>
<property name="resources.dir" location="resources"/>

<target name="jar">
<jar destfile="${build.dir}/MyJar.jar" basedir="${src.dir}">
<fileset id="resources" dir="${resources.dir}" />
<zipgroupfileset dir="${lib.dir}" includes="*.jar"/>
</jar>
</target>
</project>

右键单击并选择“作为 Ant 构建运行”。

关于java - 生成带有库的 jar 文件,但在 Eclipse 中没有可运行的 jar 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25445657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com