diff --git a/app/pom.xml b/app/pom.xml index 6d9ad8a677..f7a4382265 100644 --- a/app/pom.xml +++ b/app/pom.xml @@ -580,8 +580,9 @@ - - native + + true + false diff --git a/app/src/main/java/io/apicurio/registry/services/RegistryConfigSource.java b/app/src/main/java/io/apicurio/registry/services/RegistryConfigSource.java index d44136711a..6cc4609448 100644 --- a/app/src/main/java/io/apicurio/registry/services/RegistryConfigSource.java +++ b/app/src/main/java/io/apicurio/registry/services/RegistryConfigSource.java @@ -22,7 +22,7 @@ public synchronized Map 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 envMap = System.getenv(); for (Map.Entry entry : envMap.entrySet()) { diff --git a/pom.xml b/pom.xml index 7034b26600..478de9569e 100644 --- a/pom.xml +++ b/pom.xml @@ -132,7 +132,7 @@ 16.17.0 - 3.9.3 + 3.11.1 3.1.8 diff --git a/utils/exportConfluent/src/main/resources/application.properties b/utils/exportConfluent/src/main/resources/application.properties index 7ca0721d43..8236c82e61 100644 --- a/utils/exportConfluent/src/main/resources/application.properties +++ b/utils/exportConfluent/src/main/resources/application.properties @@ -1,5 +1,4 @@ quarkus.package.main-class=ConfluentExport -quarkus.package.type=uber-jar - -quarkus.log.level=WARN \ No newline at end of file +quarkus.log.level=WARN +quarkus.package.jar.type=uber-jar \ No newline at end of file