How to build jars from IntelliJ properly?(如何正确地从 IntelliJ 构建 jars?)
问题描述
我有一个包含单个模块和一些依赖项的项目.我想在一个单独的目录中创建一个包含已编译模块的 jar.另外,我想让依赖项出现在我的模块旁边.
I have a project that contains a single module, and some dependencies. I'd like to create a jar, in a separate directory, that contains the compiled module. In addition, I'd like to have the dependencies present beside my module.
无论我如何扭曲 IntelliJ 的构建 jar"过程,我的模块的输出都是空的(除了一个 META-INF 文件).
No matter how I twist IntelliJ's "build jar" process, the output of my module appears empty (besides a META-INF file).
推荐答案
这里是如何使用 IntelliJ 10 构建一个 jar http://blogs.jetbrains.com/idea/2010/08/quickly-create-jar-artifact/
Here's how to build a jar with IntelliJ 10 http://blogs.jetbrains.com/idea/2010/08/quickly-create-jar-artifact/
文件 -> 项目结构 -> 项目设置 -> 工件 -> 点击绿色加号 -> Jar -> 来自具有依赖关系的模块...
File -> Project Structure -> Project Settings -> Artifacts -> Click green plus sign -> Jar -> From modules with dependencies...
上面将骨架"设置为将保存 jar 的位置.要实际构建并保存它,请执行以下操作:
The above sets the "skeleton" to where the jar will be saved to. To actually build and save it do the following:
解压到目标Jar
好的
构建 |构建工件 |构建
Build | Build Artifact | Build
尝试从
项目名称 |出|文物 |项目名称_jar |项目名称.jar
这篇关于如何正确地从 IntelliJ 构建 jars?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何正确地从 IntelliJ 构建 jars?
基础教程推荐
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01