本文介绍了如何在Netbeans的jar中为maven项目打包源代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Netbeans中构建maven项目(Java)时,默认情况下会忽略源代码。
如何在Netbeans的jar中为maven项目打包资源?
When building maven projects (Java) in Netbeans, by default, sources are left out.How to package sources in a jar in Netbeans for maven projects?
类似于:
myproject.jar
myproject-sources.jar
推荐答案
你可以用两种方式完成。
You can do it in two ways.
第一种方式 - 项目属性
- 右键单击项目> 属性
- 转到> 操作
- 添加自定义的(单击添加自定义... )用于单独操作或通过选择它将其添加到现有操作(例如,使用依赖项构建)。
- 在执行目标中 menu,添加
source:jar
- Right click on the project > Properties
- Go to > Actions
- Either add a custom one (click Add custom...) for a separate action or add it to an existing one (e.g. Build with dependencies) by selecting it.
- In the Execute Goals menu, add
source:jar
第二种方式 - 自定义目标
- 右键单击项目> 自定义> 目标
- 目标:输入
来源:jar
- 要使此永久化,请选中复选框记住为并为其命名。
- 运行它:右键单击项目> 自定义>
名称您选择了
- Right click on the project > Custom > Goals
- In Goals: type
source:jar
- To make this permanent, select the checkbox Remember as and give it a name.
- Run it: Right click on the project > Custom >
the name you selected
这篇关于如何在Netbeans的jar中为maven项目打包源代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!