gpt4 book ai didi

maven - 将不同包中的 ServletContainerInitializers 打包到单个 OSGi 包中

转载 作者:行者123 更新时间:2023-11-28 23:31:23 25 4
gpt4 key购买 nike

我正在创建一个包含以下依赖项的 OSGi 包

<artifactId>tomcat-dbcp</artifactId>
<artifactId>tomcat-embed-core</artifactId>
<artifactId>tomcat-embed-jasper</artifactId>
<artifactId>tomcat-embed-websocket</artifactId>
<artifactId>tomcat-jasper</artifactId>
<artifactId>ecj</artifactId>

我想在 websocket 和 jasper 中打包 SCI。

我的IncludeResource部分如下

<Include-Resource>
{maven-resources},
@tomcat-jasper-${version.tomcat}.jar!/META-INF/*,
@tomcat-embed-websocket-${version.tomcat}.jar!/META-INF/*,
src/main/resources
</Include-Resource>

这里的问题是我只能得到 websocket SCi。我认为 jasper 资源被 websocket 资源覆盖了。取决于我指定它们的顺序。

如何将两种资源放在同一个包中?

最佳答案

我找到了这个问题的答案。您可以为此使用 maven-shade-plugin。

例如在我的场景中,我可以按如下方式打包两个 SCI

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
</configuration>
</execution>
</executions>
</plugin>

关于maven - 将不同包中的 ServletContainerInitializers 打包到单个 OSGi 包中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29889047/

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