You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/01/19 19:46:59 UTC

[camel-spring-boot] branch main updated: CAMEL-17511: camel-spring-boot - Actuators need to be compiled with parameters=true

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new e6dc657  CAMEL-17511: camel-spring-boot - Actuators need to be compiled with parameters=true
e6dc657 is described below

commit e6dc657d4fede0278b59c21040f493ae923e0521
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Jan 19 20:46:45 2022 +0100

    CAMEL-17511: camel-spring-boot - Actuators need to be compiled with parameters=true
---
 core/camel-spring-boot/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/core/camel-spring-boot/pom.xml b/core/camel-spring-boot/pom.xml
index a45c697..ee8d079 100644
--- a/core/camel-spring-boot/pom.xml
+++ b/core/camel-spring-boot/pom.xml
@@ -163,6 +163,20 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>${maven-compiler-plugin-version}</version>
+                <configuration>
+                    <source>${jdk.version}</source>
+                    <target>${jdk.version}</target>
+                    <maxmem>512M</maxmem>
+                    <fork>${compiler.fork}</fork>
+                    <!-- needed by spring boot actuator -->
+                    <parameters>true</parameters>
+                </configuration>
+            </plugin>
+
+            <plugin>
                 <groupId>org.apache.camel</groupId>
                 <artifactId>camel-package-maven-plugin</artifactId>
                 <version>${camel-version}</version>