我有一个相当大的 java maven 项目,有超过 200 个模块,它是可以的。我正在尝试将所有这些模块合并到单个 jar 中。
在某些情况下,只声明一个新的 Maven 依赖项会非常方便,例如。my-library-5.2.4-SNAPSHOT-bundle.jar 或新项目中的类似内容。
我曾尝试使用 Maven 程序集插件。我可以创建新的 jar 文件,jar 包含所有模块 jar,如果我安装它,它会正确转到本地 .m2 文件夹。jar 可以在其他项目中声明为依赖项。
但问题是我无法在我的 java 类的库中导入任何这些模块。导入将无法识别这些。
我已将此构建部分添加到我的根 pom.xml:
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-bundle</id>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
我的 assembly.xml 看起来像这样:
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>bundle</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<moduleSets>
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<binaries>
<outputDirectory>modules</outputDirectory>
<unpack>false</unpack>
</binaries>
</moduleSet>
</moduleSets>
</assembly>