Skip to content

Commit

Permalink
Upgrade quarkus
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesarnal committed Jun 13, 2024
1 parent a2548cb commit 7505fce
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
5 changes: 3 additions & 2 deletions app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -580,8 +580,9 @@
</plugin>
</plugins>
</build>
<properties>
<quarkus.package.type>native</quarkus.package.type>
<properties>
<quarkus.native.enabled>true</quarkus.native.enabled>
<quarkus.package.jar.enabled>false</quarkus.package.jar.enabled>
</properties>
</profile>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public synchronized Map<String, String> getProperties() {
properties = new HashMap<>();
String prefix = System.getenv("REGISTRY_PROPERTIES_PREFIX");
if (prefix != null) {
String profile = ProfileManager.getActiveProfile();
String profile = ProfileManager.getLaunchMode().getProfileKey();
String profilePrefix = "%" + profile + ".";
Map<String, String> envMap = System.getenv();
for (Map.Entry<String, String> entry : envMap.entrySet()) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
<node.version>16.17.0</node.version>

<!-- Quarkus Version -->
<quarkus.version>3.9.3</quarkus.version>
<quarkus.version>3.11.1</quarkus.version>

<!-- Jandex -->
<jandex.version>3.1.8</jandex.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
quarkus.package.main-class=ConfluentExport

quarkus.package.type=uber-jar

quarkus.log.level=WARN
quarkus.log.level=WARN
quarkus.package.jar.type=uber-jar

0 comments on commit 7505fce

Please sign in to comment.