You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/11/22 09:31:28 UTC

[camel-k-runtime] branch master updated (aff4166 -> b3189c0)

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

lburgazzoli pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git.


    from aff4166  chore(tools): make sure quarkus catalog name start with "camel-catalog-"
     new ee71cd9  Update to camel-quarkus v0.4.0
     new 8a94662  Update kotlin to v1.3.60
     new b3189c0  chore(build): use action matrix

The 3 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/pr-build-java-8.yml              | 33 ----------------------
 .../{pr-build-java-11.yml => pr-build.yml}         | 13 +++++----
 .../knative/deployment/DeploymentProcessor.java    |  3 +-
 pom.xml                                            |  8 +++---
 4 files changed, 13 insertions(+), 44 deletions(-)
 delete mode 100644 .github/workflows/pr-build-java-8.yml
 rename .github/workflows/{pr-build-java-11.yml => pr-build.yml} (86%)


[camel-k-runtime] 02/03: Update kotlin to v1.3.60

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 8a9466203d1846a81f997f219405309f4cc10e87
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Thu Nov 21 11:01:58 2019 +0100

    Update kotlin to v1.3.60
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index faf4740..f21c01c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,7 +49,7 @@
         <log4j2.version>2.12.1</log4j2.version>
         <slf4j.version>1.7.29</slf4j.version>
         <groovy.version>2.5.8</groovy.version>
-        <kotlin.version>1.3.50</kotlin.version>
+        <kotlin.version>1.3.60</kotlin.version>
         <snakeyaml.version>1.25</snakeyaml.version>
         <spock.version>1.3-groovy-2.5</spock.version>
         <jackson.version>2.10.0</jackson.version>


[camel-k-runtime] 01/03: Update to camel-quarkus v0.4.0

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit ee71cd97d964a1949e02f6f16c623a68025ae649
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Thu Nov 21 10:39:21 2019 +0100

    Update to camel-quarkus v0.4.0
---
 .../camel/k/quarkus/knative/deployment/DeploymentProcessor.java     | 3 +--
 pom.xml                                                             | 6 +++---
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/camel-k-quarkus/camel-k-quarkus-knative/deployment/src/main/java/org/apache/camel/k/quarkus/knative/deployment/DeploymentProcessor.java b/camel-k-quarkus/camel-k-quarkus-knative/deployment/src/main/java/org/apache/camel/k/quarkus/knative/deployment/DeploymentProcessor.java
index e5851d9..107f2d4 100644
--- a/camel-k-quarkus/camel-k-quarkus-knative/deployment/src/main/java/org/apache/camel/k/quarkus/knative/deployment/DeploymentProcessor.java
+++ b/camel-k-quarkus/camel-k-quarkus-knative/deployment/src/main/java/org/apache/camel/k/quarkus/knative/deployment/DeploymentProcessor.java
@@ -22,7 +22,6 @@ import io.quarkus.deployment.annotations.ExecutionTime;
 import io.quarkus.deployment.annotations.Record;
 import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
 import io.quarkus.vertx.deployment.VertxBuildItem;
-import org.apache.camel.component.knative.KnativeComponent;
 import org.apache.camel.component.knative.spi.KnativeEnvironment;
 import org.apache.camel.k.quarkus.knative.KnativeRecorder;
 import org.apache.camel.quarkus.core.CamelServiceFilter;
@@ -45,7 +44,7 @@ public class DeploymentProcessor {
     CamelRuntimeBeanBuildItem knativeComponent(KnativeRecorder recorder, VertxBuildItem vertx) {
         return new CamelRuntimeBeanBuildItem(
             "knative",
-            KnativeComponent.class,
+            "org.apache.camel.component.knative.KnativeComponent",
             recorder.createKnativeComponent(vertx.getVertx())
         );
     }
diff --git a/pom.xml b/pom.xml
index 970094b..faf4740 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,7 +36,7 @@
         <maven.compiler.source>1.8</maven.compiler.source>
         <maven.compiler.target>1.8</maven.compiler.target>
         <camel.version>3.0.0-RC3</camel.version>
-        <camel-quarkus.version>0.3.1</camel-quarkus.version>
+        <camel-quarkus.version>0.4.0</camel-quarkus.version>
         <catalog.version>${camel.version}</catalog.version>
         <junit.version>5.5.2</junit.version>
         <joor.version>0.9.12</joor.version>
@@ -59,8 +59,8 @@
         <semver4j.version>3.1.0</semver4j.version>
         <undertow.version>1.4.26.Final</undertow.version>
         <vertx.version>3.8.3</vertx.version>
-        <graalvm.version>19.2.0.1</graalvm.version>
-        <quarkus.version>0.27.0</quarkus.version>
+        <graalvm.version>19.2.1</graalvm.version>
+        <quarkus.version>1.0.0.CR1</quarkus.version>
         <jandex.version>2.1.1.Final</jandex.version>
         <javapoet.version>1.11.1</javapoet.version>
         <auto-service.version>1.0-rc6</auto-service.version>


[camel-k-runtime] 03/03: chore(build): use action matrix

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit b3189c066035df2fa953260ee78ae7bff8c7faa6
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Thu Nov 21 11:04:53 2019 +0100

    chore(build): use action matrix
---
 .github/workflows/pr-build-java-8.yml              | 33 ----------------------
 .../{pr-build-java-11.yml => pr-build.yml}         | 13 +++++----
 2 files changed, 8 insertions(+), 38 deletions(-)

diff --git a/.github/workflows/pr-build-java-8.yml b/.github/workflows/pr-build-java-8.yml
deleted file mode 100644
index 8fd6414..0000000
--- a/.github/workflows/pr-build-java-8.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to you under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-name: Build PR on Java 8
-
-on: 
-  pull_request:
-    branches: 
-      - master
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    steps:
-    - uses: actions/checkout@v1
-    - name: Set up JDK 1.8
-      uses: actions/setup-java@v1
-      with:
-        java-version: 1.8
-    - name: mvn install
-      run: ./mvnw -V -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn clean install
diff --git a/.github/workflows/pr-build-java-11.yml b/.github/workflows/pr-build.yml
similarity index 86%
rename from .github/workflows/pr-build-java-11.yml
rename to .github/workflows/pr-build.yml
index c3c640a..377a0e4 100644
--- a/.github/workflows/pr-build-java-11.yml
+++ b/.github/workflows/pr-build.yml
@@ -14,20 +14,23 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-name: Build PR on Java 11
+name: Build PR
 
-on: 
+on:
   pull_request:
-    branches: 
+    branches:
       - master
 jobs:
   build:
     runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        java: [ '1.8', '11' ]
     steps:
     - uses: actions/checkout@v1
-    - name: Set up JDK 11
+    - name: Set up JDK ${{ matrix.java }}
       uses: actions/setup-java@v1
       with:
-        java-version: 11
+        java-version: ${{ matrix.java }}
     - name: mvn install
       run: ./mvnw -V -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn clean install