Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround https://github.com/quarkusio/quarkus/issues/36952 alias https://github.com/jboss/jboss-parent-pom/issues/236 jboss-parent:40 still manages jdk-misc, but does not define version.jdk-misc anymore #36953

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3291,7 +3291,7 @@
<artifactId>importmap</artifactId>
<version>${importmap.version}</version>
</dependency>

<!-- Additional dependencies, keep in alphabetical order -->
<dependency>
<groupId>biz.paluch.logging</groupId>
Expand Down Expand Up @@ -6343,6 +6343,12 @@
<excludeScopes>test</excludeScopes>
<excludeArtifactKeys>
<key>junit:junit</key> <!-- comes from the jackson-bom -->

<!-- jboss-parent:40 still manages jdk-misc, but does not define version.jdk-misc anymore. -->
<!-- We can just remove it because is not needed anyway. -->
<!-- The exclusion can be removed once all imported BOMs depend on jboss-parent:41+ -->
<!-- See also https://github.com/jboss/jboss-parent-pom/issues/236 -->
<key>org.jboss:jdk-misc</key>
</excludeArtifactKeys>
</configuration>
</execution>
Expand Down
Loading