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/22 09:08:53 UTC

[camel-spring-boot] branch main updated: (chores) Adjust archetypes so that generated projects use Java 11 at minimum (#431)

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 c465207  (chores) Adjust archetypes so that generated projects use Java 11 at minimum (#431)
c465207 is described below

commit c4652079b9d23fe30aabfe50c0c0432381b276b7
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Sat Jan 22 10:08:44 2022 +0100

    (chores) Adjust archetypes so that generated projects use Java 11 at minimum (#431)
---
 .../src/main/resources/archetype-resources/pom.xml                     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml b/archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml
index 70087fa..2bd381f 100644
--- a/archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml
@@ -107,8 +107,7 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.8</source>
-          <target>1.8</target>
+          <release>11</release>
         </configuration>
       </plugin>
       <plugin>