Skip to content

Commit

Permalink
doc: update quickstarts/maven/quarkus to latest Quarkus version (#2864)
Browse files Browse the repository at this point in the history
  • Loading branch information
l3002 authored Apr 16, 2024
1 parent ba6503b commit 8f7c02a
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/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<jkube.version>${project.version}</jkube.version>
<version.quarkus>2.8.1.Final</version.quarkus>
<version.quarkus>3.9.1</version.quarkus>
<jkube.enricher.jkube-service.type>NodePort</jkube.enricher.jkube-service.type>
</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 8f7c02a

Please sign in to comment.