You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gn...@apache.org on 2024/03/20 14:46:55 UTC

(camel-spring-boot) branch main updated (ef979632725 -> cf6ac6cee6f)

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

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


    from ef979632725 [CAMEL-20577] Test for avoid rest dupes
     new c227f4ed044 [CAMEL-20524] Remove unused variable
     new cf6ac6cee6f Use the release compiler flag to validate JDK methods signatures

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                                | 3 +--
 .../apache/camel/springboot/maven/SpringBootConfigGeneratorMojo.java   | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)


(camel-spring-boot) 02/02: Use the release compiler flag to validate JDK methods signatures

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit cf6ac6cee6f9dbdc8d1b4ccbcd33db5f8190ed89
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Wed Mar 20 15:46:29 2024 +0100

    Use the release compiler flag to validate JDK methods signatures
---
 pom.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1a8f7dc3064..cd32752499e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -169,8 +169,7 @@
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>${maven-compiler-plugin-version}</version>
                 <configuration>
-                    <source>${jdk.version}</source>
-                    <target>${jdk.version}</target>
+                    <release>${jdk.version}</release>
                     <maxmem>512M</maxmem>
                     <fork>${compiler.fork}</fork>
                 </configuration>


(camel-spring-boot) 01/02: [CAMEL-20524] Remove unused variable

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c227f4ed04475d2f4f525705c5d0a76aa3d8ded5
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Wed Mar 20 15:45:47 2024 +0100

    [CAMEL-20524] Remove unused variable
---
 .../org/apache/camel/springboot/maven/SpringBootConfigGeneratorMojo.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tooling/camel-spring-boot-config-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/SpringBootConfigGeneratorMojo.java b/tooling/camel-spring-boot-config-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/SpringBootConfigGeneratorMojo.java
index c002a17cc05..24fd9fbb938 100644
--- a/tooling/camel-spring-boot-config-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/SpringBootConfigGeneratorMojo.java
+++ b/tooling/camel-spring-boot-config-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/SpringBootConfigGeneratorMojo.java
@@ -72,7 +72,6 @@ public class SpringBootConfigGeneratorMojo extends AbstractMojo {
     @Override
     public void execute() throws MojoExecutionException {
         try {
-            List<String> props = new ArrayList<>();
             getLog().info("Loading config from " + sourceClassFile);
             String classFile = Files.readString(Paths.get(sourceClassFile));
             JavaClass<JavaClassSource> inputClass = (JavaClass) Roaster.parse(classFile);