xml 使用Maven构建在JAR中包含JAVA源

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 使用Maven构建在JAR中包含JAVA源相关的知识,希望对你有一定的参考价值。

<project>
    <!-- put the usual packaging, dependencies etc. here.-->
    <build>
        <resources>
            <resource>
                <!-- include JAVA scources in JAR -->
                <!-- this is for development only,
                     the production JAR should not have the sources
                     see http://stackoverflow.com/questions/25779900/how-to-include-source-file-java-file-parallel-to-class-file-in-the-generated -->
                <directory>src/main/java</directory>
            </resource>
        </resources>
    </build>
</project>

以上是关于xml 使用Maven构建在JAR中包含JAVA源的主要内容,如果未能解决你的问题,请参考以下文章

如何在 maven jar 构建过程中包含外部 jar?

通过 maven-assembly-plugin 打包在 jar 中包含 spring xml

如何教 Eclipse 在源路径中包含 Maven 源包?

如何在 Maven 生成的 jar 中包含特定文件夹?

为啥 maven 不在我的 jar 中包含 JSP 文件?

在 Maven 项目中包含本地 jar 文件 - 找不到文件