Skip to content

Commit

Permalink
chore(quickstart): updated quarkus-customized-image to latest version…
Browse files Browse the repository at this point in the history
… of Quarkus (eclipse-jkube#2865)
  • Loading branch information
l3002 authored Apr 9, 2024
1 parent b05bf93 commit 579e7df
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion quickstarts/maven/quarkus-customized-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<jkube.version>${project.version}</jkube.version>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<version.quarkus>2.13.3.Final</version.quarkus>
<version.quarkus>3.9.1</version.quarkus>
<jkube.build.pullSecret>12819530-ocp42-exposed-env-pull-secret-pull-secret</jkube.build.pullSecret>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
*/
package org.eclipse.jkube.quickstart.quarkus.rest;

import javax.inject.Inject;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;

@Path("/")
public class CoolApplicationResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
package org.eclipse.jkube.quickstart.quarkus.rest;

import javax.inject.Singleton;
import jakarta.inject.Singleton;

@Singleton
public class CoolApplicationService {
Expand Down

0 comments on commit 579e7df

Please sign in to comment.