gpt4 book ai didi

java - 如何在多模块 Maven 项目中使用以前构建的 jar?

转载 作者:行者123 更新时间:2023-12-02 08:55:09 24 4
gpt4 key购买 nike

我有this maven multi-module project :

ModuleA
src
pom.xml
target
ModuleA-with-dependencies-shaded.jar (version 4.1 of lucene relocated)
ModuleB
src
pom.xml
target
ModuleB-with-dependencies.jar (version 7.5.0 of lucene)
ModuleDist
assembly
all.xml
pom.xml (shaded plugin for jar + assembly for Docker)

dist pom 插件的配置如下:

        <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<shadedClassifierName>all</shadedClassifierName>
<shadedArtifactAttached>true</shadedArtifactAttached>
<transformers>
<!--remove models from jar see mitie -->
<transformer implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
<resource>.dat</resource>
</transformer>
</transformers>
<artifactSet>
<excludes>
<exclude>log4j:log4j:jar:</exclude>
</excludes>
</artifactSet>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<id>make-dist</id>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/all.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>

以及程序集 all.xml :

<assembly>
<id>all</id>
<formats>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.basedir}/src/main/docker</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>*</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
</fileSets>
</assembly>

作为ModuleA具有对 lucene 4.1 的传递依赖(但已重新定位,因此不会与 moduleB 发生冲突)和 ModuleB具有对 lucene 7.5.0 的传递依赖,我想使用 ModuleA 之前构建的 和阴影 jar 在 ModuleDist 的 Maven 着色插件中(因为如果我将 lucene 重新定位在 ModuleDist 中,它就会重新定位所有 lucene 类)。

我怎样才能做到这一点?
或者还有其他方法可以做到这一点吗?

最佳答案

要将运行时依赖项的所有 jar 添加到程序集中,请添加如下内容:

<?xml version="1.0"?>
<assembly>
...
<dependencySets>
<dependencySet>
<outputDirectory>/lib</outputDirectory>
<unpack>false</unpack>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
</assembly>

看一下汇编插件documentation更多细节。可以找到一个工作示例 here (未使用阴影)。

我的个人经验是,最好只有一个最终模块来组装所有东西。这样着色器就不必一遍又一遍地拆卸和组装所有内容。

使用 Jackson 和 Log4j2 时,着色是一个大问题,因为它破坏了一些扩展查找机制,这些机制期望所有内容都位于单独的 jar 中。我建议不要再使用它。

关于java - 如何在多模块 Maven 项目中使用以前构建的 jar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60532602/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com