我有一个项目,我想在其中添加一个外部 JAR 文件。所需的外部 JAR 文件有一个漂亮的 Github 页面,其中包含源代码,但没有预编译的 JAR 文件。
这些是我到目前为止完成的步骤:
1. I have downloaded the source in a zip. (its Twinkle from SwingFx.ch in case you're interested)
2. I have extracted the zip file to my workspace.
3. I have created a new project with the same name as the extracted folder from the zip file. (project loads the source successfully)
4. I select the export option from the File menu and selected the 'JAR file' option and clicked next.
注意:我必须在上面的 Twinkle 项目中添加一个外部库才能成功构建(以防对设置产生影响)。
在 JAR 文件规范页面上有多个可用的复选框选项(见下文):
Export generated class file and resources
Export all output folder for checked projects
Export Java source files and resources
Export refactorings for checked projects
Compress the contents of the JAR file
Add directory entries
我不确定应该选择哪个,如果它对项目的行为产生影响,我会将(即将)导出的 JAR 文件添加到其中。我通过使用默认设置导出来测试它。这工作正常.. 但是,我现在不知道是否应该选择不同的设置以防万一我不知道的任何原因。我不确定当我打算将 JAR 文件作为外部 JAR 文件添加到另一个项目时是否应该选择特定设置。
请赐教!