Skip to content

Commit

Permalink
chore: update quarkus version in templates (#1757)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxandersen committed Feb 26, 2024
1 parent d5dfb8c commit aebb6d1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/init-qcli.java.qute
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
///usr/bin/env jbang "$0" "$@" ; exit $?
//JAVA 11+
//JAVA 17+
// Update the Quarkus version to what you want here or run jbang with
// `-Dquarkus.version=<version>` to override it.
//DEPS io.quarkus:quarkus-bom:$\{quarkus.version:2.11.2.Final\}@pom
//DEPS io.quarkus:quarkus-bom:$\{quarkus.version:3.7.2\}@pom
//DEPS io.quarkus:quarkus-picocli
{#for dep in dependencies.orEmpty}
//DEPS {dep}
Expand All @@ -12,8 +12,8 @@

import picocli.CommandLine;

import javax.enterprise.context.Dependent;
import javax.inject.Inject;
import jakarta.enterprise.context.Dependent;
import jakarta.inject.Inject;
import io.quarkus.runtime.annotations.QuarkusMain;
import io.quarkus.runtime.QuarkusApplication;
import io.quarkus.runtime.Quarkus;
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/init-qmetrics.java.qute
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
///usr/bin/env jbang "$0" "$@" ; exit $?
//JAVA 11+
//JAVA 17+
// Update the Quarkus version to what you want here or run jbang with
// `-Dquarkus.version=<version>` to override it.
//DEPS io.quarkus:quarkus-bom:$\{quarkus.version:2.11.2.Final\}@pom
//DEPS io.quarkus:quarkus-bom:$\{quarkus.version:3.7.2\}@pom
//DEPS io.quarkus:quarkus-resteasy
//DEPS io.quarkus:quarkus-smallrye-metrics
//JAVAC_OPTIONS -parameters
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/init-qrest.java.qute
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
///usr/bin/env jbang "$0" "$@" ; exit $?
//JAVA 11+
//JAVA 17+
// Update the Quarkus version to what you want here or run jbang with
// `-Dquarkus.version=<version>` to override it.
//DEPS io.quarkus:quarkus-bom:$\{quarkus.version:2.11.2.Final\}@pom
//DEPS io.quarkus:quarkus-bom:$\{quarkus.version:3.7.2\}@pom
//DEPS io.quarkus:quarkus-resteasy
// //DEPS io.quarkus:quarkus-smallrye-openapi
// //DEPS io.quarkus:quarkus-swagger-ui
//JAVAC_OPTIONS -parameters

import io.quarkus.runtime.Quarkus;
import javax.enterprise.context.ApplicationScoped;
import jakarta.enterprise.context.ApplicationScoped;
import javax.ws.rs.GET;
import javax.ws.rs.Path;

Expand Down

0 comments on commit aebb6d1

Please sign in to comment.