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 14:01:35 UTC

[camel-examples] branch main updated (ed6ff7a -> 94bbbed)

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-examples.git.


    from ed6ff7a  CAMEL-17194: endpointdsl - Prepare for generate only once during project build.
     new 32c7685  Drop Java 8
     new 94bbbed  Drop Java 8

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:
 .github/workflows/master-pr-build.yml   | 2 +-
 .github/workflows/master-push-build.yml | 2 +-
 examples/bigxml-split/pom.xml           | 2 --
 examples/pom.xml                        | 2 +-
 4 files changed, 3 insertions(+), 5 deletions(-)

[camel-examples] 02/02: Drop Java 8

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-examples.git

commit 94bbbed1a57370459c09f9164bf0dd455f3a50dc
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Dec 24 14:56:51 2021 +0100

    Drop Java 8
---
 examples/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/pom.xml b/examples/pom.xml
index ad310ff..dc12806 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -167,7 +167,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>
 
         <camel.version>3.15.0-SNAPSHOT</camel.version>

[camel-examples] 01/02: Drop Java 8

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-examples.git

commit 32c7685884d79529c7f3a5644219326468150237
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Dec 24 14:56:02 2021 +0100

    Drop Java 8
---
 .github/workflows/master-pr-build.yml   | 2 +-
 .github/workflows/master-push-build.yml | 2 +-
 examples/bigxml-split/pom.xml           | 2 --
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/master-pr-build.yml b/.github/workflows/master-pr-build.yml
index 1faafba..db71f25 100644
--- a/.github/workflows/master-pr-build.yml
+++ b/.github/workflows/master-pr-build.yml
@@ -26,7 +26,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        java: [ '1.8', '11' ]
+        java: [ '11' ]
     steps:
       - uses: actions/checkout@v2
       - name: Set up JDK ${{ matrix.java }}
diff --git a/.github/workflows/master-push-build.yml b/.github/workflows/master-push-build.yml
index ec4b45d..a777067 100644
--- a/.github/workflows/master-push-build.yml
+++ b/.github/workflows/master-push-build.yml
@@ -26,7 +26,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        java: [ '1.8', '11' ]
+        java: [ '11' ]
     steps:
       - uses: actions/checkout@v2
       - name: Set up JDK ${{ matrix.java }}
diff --git a/examples/bigxml-split/pom.xml b/examples/bigxml-split/pom.xml
index 27b8ea5..75ac8ba 100644
--- a/examples/bigxml-split/pom.xml
+++ b/examples/bigxml-split/pom.xml
@@ -33,8 +33,6 @@
     <description>How to deal with big XML files in Camel</description>
 
     <properties>
-        <maven.compiler.source>1.8</maven.compiler.source>
-        <maven.compiler.target>1.8</maven.compiler.target>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
         <category>EIP</category>