Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里将 bcpkix-jdk18on 升级到 1.84 后,仓库内仍有模块(如 weixin-java-cp/pom.xml)显式固定 bcprov-jdk18on 为 1.80,可能导致同一模块里 bcpkix 与 bcprov 版本不一致(Maven 会优先选择更“近”的 direct 依赖),从而引发运行期/签名不兼容问题。建议同步对 bcprov-jdk18on 做版本统一(例如在父 pom 的 dependencyManagement 中也管理 bcprov 版本并更新/移除子模块里的旧版本声明),确保 bcpkix/bcprov 保持同一版本线。