如何在Maven中使用源代码生成JAR [英] How to generate a JAR with the source code in Maven

查看:116
本文介绍了如何在Maven中使用源代码生成JAR的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Maven 2.2生成包含其内部源代码的JAR?

How can I use Maven 2.2 to generate a JAR with the source code inside it?

推荐答案

使用 <resources>元素;简而言之:

Use the <resources> element; nutshell:

<build>
<...>
<resources>
 <resource>
    <directory>${basedir}/src/main/resources</directory>
 </resource>
 <resource>
    <directory>${basedir}/src/main/java</directory>
 </resource>
</resources>
<...>
</build>

哦,我想您是说您想要一个包含常规jar内容和源的单个jar.

Oh, I thought you meant you wanted a single jar with both normal jar contents and the source.

这篇关于如何在Maven中使用源代码生成JAR的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆