Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"groupName": "guava packages"
},
{
"matchPackageNames": ["io.quarkus", "io.quarkus.platform:quarkus-bom"],
"matchPackageNames": ["io.quarkus", "io.quarkus:quarkus-bom"],
"groupName": "quarkus packages"
},
{
Expand Down
2 changes: 1 addition & 1 deletion smoke-tests/images/quarkus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
}

dependencies {
implementation(enforcedPlatform("io.quarkus.platform:quarkus-bom:3.2.4.Final"))
implementation(enforcedPlatform("io.quarkus:quarkus-bom:3.2.4.Final"))
implementation("io.quarkus:quarkus-resteasy")
}

Expand Down
2 changes: 0 additions & 2 deletions smoke-tests/images/servlet/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ fun configureImage(
} else if (vm == "openj9") {
if (isWindows) {
// ibm-semeru-runtimes doesn't publish windows images
// adoptopenjdk doesn't publish Windows 2022 images (and is deprecated)
throw GradleException("Unexpected vm: $vm")
} else {
"ibm-semeru-runtimes:open-$jdk-jdk"
Expand Down Expand Up @@ -232,7 +231,6 @@ fun createDockerTasks(parentTask: TaskProvider<out Task>, isWindows: Boolean) {
for (vm in entry.vm) {
if (vm == "openj9" && isWindows) {
// ibm-semeru-runtimes doesn't publish windows images
// adoptopenjdk is deprecated and doesn't publish Windows 2022 images
continue
}
for (jdk in entry.jdk) {
Expand Down