gpt4 book ai didi

java - 如何使用 Maven Bundle Plugin (BND) 从另一个依赖项中存在的依赖项中排除指定包?

转载 作者:太空宇宙 更新时间:2023-11-04 07:59:53 25 4
gpt4 key购买 nike

我有两个依赖项:

<dependency>
<groupId>org.postgis</groupId>
<artifactId>postgis-jdbc</artifactId>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>com.springsource.org.postgresql.jdbc4</artifactId>
<version>8.3.604</version>
</dependency>

两个依赖导出包:

  • org.postgres

使用 Maven Bundle 插件的 wrap 命令时,如何排除从 postgis-jdbc 导出 org.postgres

最佳答案

将以下内容添加到 pom 中的配置部分:

<Export-Package>!org.postgres</Export-Package>

或者您可能会忽略任何包

<Export-Package>!*</Export-Package>

关于java - 如何使用 Maven Bundle Plugin (BND) 从另一个依赖项中存在的依赖项中排除指定包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13011654/

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