diff options
-rw-r--r-- | deployment/pom.xml | 17 | ||||
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | runtime/pom.xml | 17 |
3 files changed, 35 insertions, 1 deletions
diff --git a/deployment/pom.xml b/deployment/pom.xml index f1b2b6f..b120f29 100644 --- a/deployment/pom.xml +++ b/deployment/pom.xml @@ -65,6 +65,23 @@ SPDX-License-Identifier: LGPL-3.0-or-later </path> </annotationProcessorPaths> </configuration> + <executions> + <execution> + <id>default-compile</id> + <configuration> + <annotationProcessorPaths> + <path> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-extension-processor</artifactId> + <version>${quarkus.version}</version> + </path> + </annotationProcessorPaths> + <compilerArgs> + <arg>-AlegacyConfigRoot=true</arg> + </compilerArgs> + </configuration> + </execution> + </executions> </plugin> </plugins> </build> @@ -72,7 +72,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later <spotless-plugin.version>2.43.0</spotless-plugin.version> <surefire-plugin.version>3.4.0</surefire-plugin.version> - <quarkus.version>3.13.3</quarkus.version> + <quarkus.version>3.14.0</quarkus.version> </properties> <distributionManagement> diff --git a/runtime/pom.xml b/runtime/pom.xml index 89eb805..0f5befc 100644 --- a/runtime/pom.xml +++ b/runtime/pom.xml @@ -84,6 +84,23 @@ SPDX-License-Identifier: LGPL-3.0-or-later </path> </annotationProcessorPaths> </configuration> + <executions> + <execution> + <id>default-compile</id> + <configuration> + <annotationProcessorPaths> + <path> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-extension-processor</artifactId> + <version>${quarkus.version}</version> + </path> + </annotationProcessorPaths> + <compilerArgs> + <arg>-AlegacyConfigRoot=true</arg> + </compilerArgs> + </configuration> + </execution> + </executions> </plugin> <plugin> |