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 2021/12/24 13:13:47 UTC

[camel-spring-boot] branch main updated (100e72f -> e8c5973)

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

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


    from 100e72f  Upgrade to spring boot 2.6.2
     new a6be91b  CAMEL-17329: Drop Java 8 and set source/target to Java 11
     new e8c5973  CAMEL-17329: Drop Java 8 and set source/target to Java 11

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                                              |  2 +-
 tooling/camel-spring-boot-dependencies/pom.xml       |  6 +++---
 .../camel-spring-boot-generator-maven-plugin/pom.xml | 20 ++++++++++++++++++--
 3 files changed, 22 insertions(+), 6 deletions(-)

[camel-spring-boot] 01/02: CAMEL-17329: Drop Java 8 and set source/target to Java 11

Posted by da...@apache.org.
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

commit a6be91b9568c492b7e5fea64792aa63ac81e1700
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Dec 24 10:51:57 2021 +0100

    CAMEL-17329: Drop Java 8 and set source/target to Java 11
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8dd8341..3af5139 100644
--- a/pom.xml
+++ b/pom.xml
@@ -104,7 +104,7 @@
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 
         <site-repo-url>scpexe://people.apache.org/www/camel.apache.org/maven/</site-repo-url>
-        <jdk.version>1.8</jdk.version>
+        <jdk.version>11</jdk.version>
         <compiler.fork>false</compiler.fork>
 
         <!-- Spring-Boot target version -->

[camel-spring-boot] 02/02: CAMEL-17329: Drop Java 8 and set source/target to Java 11

Posted by da...@apache.org.
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

commit e8c5973ff90ded3fcb2d3f89e8c8649aea2bbacd
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Dec 24 14:10:24 2021 +0100

    CAMEL-17329: Drop Java 8 and set source/target to Java 11
---
 tooling/camel-spring-boot-dependencies/pom.xml       |  6 +++---
 .../camel-spring-boot-generator-maven-plugin/pom.xml | 20 ++++++++++++++++++--
 2 files changed, 21 insertions(+), 5 deletions(-)

diff --git a/tooling/camel-spring-boot-dependencies/pom.xml b/tooling/camel-spring-boot-dependencies/pom.xml
index ccb28e1..fabb232 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -73,7 +73,7 @@
       <dependency>
         <groupId>com.alibaba</groupId>
         <artifactId>fastjson</artifactId>
-        <version>1.2.78</version>
+        <version>1.2.79</version>
       </dependency>
       <dependency>
         <groupId>com.cloudbees.thirdparty</groupId>
@@ -4436,12 +4436,12 @@
       <dependency>
         <groupId>org.apache.pulsar</groupId>
         <artifactId>pulsar-client</artifactId>
-        <version>2.9.0</version>
+        <version>2.9.1</version>
       </dependency>
       <dependency>
         <groupId>org.apache.pulsar</groupId>
         <artifactId>pulsar-client-admin</artifactId>
-        <version>2.9.0</version>
+        <version>2.9.1</version>
       </dependency>
       <dependency>
         <groupId>org.apache.ws.commons.axiom</groupId>
diff --git a/tooling/camel-spring-boot-generator-maven-plugin/pom.xml b/tooling/camel-spring-boot-generator-maven-plugin/pom.xml
index 56bf00a..5a22fc2 100644
--- a/tooling/camel-spring-boot-generator-maven-plugin/pom.xml
+++ b/tooling/camel-spring-boot-generator-maven-plugin/pom.xml
@@ -105,7 +105,7 @@
         <dependency>
             <groupId>org.apache.maven.plugin-tools</groupId>
             <artifactId>maven-plugin-annotations</artifactId>
-            <version>3.6.0</version>
+            <version>${maven-plugin-plugin-version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.maven</groupId>
@@ -115,7 +115,7 @@
         <dependency>
             <groupId>org.apache.maven.shared</groupId>
             <artifactId>maven-dependency-tree</artifactId>
-            <version>3.0.1</version>
+            <version>3.1.0</version>
         </dependency>
         <dependency>
             <groupId>org.codehaus.plexus</groupId>
@@ -245,4 +245,20 @@
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <version>${maven-plugin-plugin-version}</version>
+                <configuration>
+                    <mojoDependencies>
+                        <dep>org.codehaus.mojo:exec-maven-plugin</dep>
+                        <dep>org.apache.maven:maven-plugin-api</dep>
+                    </mojoDependencies>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>