作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有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/
我是一名优秀的程序员,十分优秀!