Skip to content

Commit 1ea7740

Browse files
authored
Fix Jandex Maven coordinates (#2888)
The entry `jandex = { module = "io.smallrye.jandex:jandex", version ="3.5.0" }` is wrong (coordinates are `io.smallrye:jandex`), and Jandex is defined elsewhere as `smallrye-jandex`. Interestingly, these (broken) coordinates seem to cause the consistent re-creation of the Quarkus 3.29.0 PR (the cause is a mystery).
1 parent 7892540 commit 1ea7740

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

build-logic/src/main/kotlin/polaris-java.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ plugins.withType<JandexPlugin>().configureEach {
4848
version =
4949
versionCatalogs
5050
.named("libs")
51-
.findLibrary("jandex")
51+
.findLibrary("smallrye-jandex")
5252
.orElseThrow { GradleException("jandex version not found in libs.versions.toml") }
5353
.get()
5454
.version

gradle/libs.versions.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ jakarta-persistence-api = { module = "jakarta.persistence:jakarta.persistence-ap
7373
jakarta-servlet-api = { module = "jakarta.servlet:jakarta.servlet-api", version = "6.1.0" }
7474
jakarta-validation-api = { module = "jakarta.validation:jakarta.validation-api", version = "3.1.1" }
7575
jakarta-ws-rs-api = { module = "jakarta.ws.rs:jakarta.ws.rs-api", version = "4.0.0" }
76-
jandex = { module = "io.smallrye.jandex:jandex", version ="3.5.0" }
7776
javax-servlet-api = { module = "javax.servlet:javax.servlet-api", version = "4.0.1" }
7877
junit-bom = { module = "org.junit:junit-bom", version = "5.14.0" }
7978
keycloak-admin-client = { module = "org.keycloak:keycloak-admin-client", version = "26.0.7" }

0 commit comments

Comments
 (0)