From 5c11dfcec6b7282861fccc18d3905e969568eebf Mon Sep 17 00:00:00 2001 From: Jonathan Knight Date: Mon, 15 Jan 2024 17:16:08 +0300 Subject: [PATCH] Bump Helidon version --- .github/workflows/coherence-matrix.yaml | 2 +- java/operator-test-helidon/pom.xml | 2 +- java/pom.xml | 12 ++++-------- pkg/runner/runner.go | 4 ++-- 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/coherence-matrix.yaml b/.github/workflows/coherence-matrix.yaml index f0993976..22658f18 100644 --- a/.github/workflows/coherence-matrix.yaml +++ b/.github/workflows/coherence-matrix.yaml @@ -71,7 +71,7 @@ jobs: - matrixName: "22.06" coherenceVersion: "22.06.6" - coherenceImage: "ghcr.io/oracle/coherence-ce:22.06.7" + coherenceImage: "ghcr.io/oracle/coherence-ce:22.06.6" javaVersion: 11 baseImage: "gcr.io/distroless/java11-debian11" diff --git a/java/operator-test-helidon/pom.xml b/java/operator-test-helidon/pom.xml index 5f6e97e4..2fef63d5 100644 --- a/java/operator-test-helidon/pom.xml +++ b/java/operator-test-helidon/pom.xml @@ -66,7 +66,7 @@ ${version.plugin.jib} - io.helidon.microprofile.server.Main + io.helidon.microprofile.cdi.Main packaged diff --git a/java/pom.xml b/java/pom.xml index 93349c3f..90b2e185 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -62,7 +62,6 @@ 2.1 1.3 2.6.5 - 2.1.1.Final 4.13.1 5.7.2 3.10.0 @@ -146,14 +145,11 @@ - io.helidon.microprofile.bundles - helidon-microprofile + io.helidon + helidon-dependencies ${version.lib.helidon} - - - org.jboss - jandex - ${version.lib.jandex} + pom + import jakarta.activation diff --git a/pkg/runner/runner.go b/pkg/runner/runner.go index edd666a8..7eefa8ad 100644 --- a/pkg/runner/runner.go +++ b/pkg/runner/runner.go @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019, 2023, Oracle and/or its affiliates. + * Copyright (c) 2019, 2024, Oracle and/or its affiliates. * Licensed under the Universal Permissive License v 1.0 as shown at * http://oss.oracle.com/licenses/upl. */ @@ -34,7 +34,7 @@ const ( // DefaultMain is an indicator to run the default main class. DefaultMain = "$DEFAULT$" // HelidonMain is the default Helidon main class name. - HelidonMain = "io.helidon.microprofile.server.Main" + HelidonMain = "io.helidon.microprofile.cdi.Main" // ServerMain is the default server main class name. ServerMain = "com.oracle.coherence.k8s.Main" // SpringBootMain is the default Spring Boot main class name.