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/12/18 20:26:57 UTC

[camel-k-runtime] branch master updated (05454b7 -> 771b9df)

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 05454b7  [quarkus] create loaders for java, groovy and kotlin in JVM mode #212
     new 8047ac0  chore(deps): update jackson to v2.10.1
     new 008c3fb  chore(deps): update log4j2 to v2.13.0
     new 618ce3f  chore(deps): update slf4j to v1.7.30
     new 0e2557e  chore(deps): update immutables to v2.8.3
     new 771b9df  chore(test): randomize http port for quarkus tests

The 5 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:
 camel-k-quarkus/camel-k-quarkus-core/it/pom.xml    | 22 ++++++++++++++++++++++
 .../camel-k-quarkus-loader-js/it/pom.xml           | 22 ++++++++++++++++++++++
 .../camel-k-quarkus-loader-xml/it/pom.xml          | 22 ++++++++++++++++++++++
 .../camel-k-quarkus-loader-yaml/it/pom.xml         | 22 ++++++++++++++++++++++
 pom.xml                                            |  8 ++++----
 5 files changed, 92 insertions(+), 4 deletions(-)


[camel-k-runtime] 02/05: chore(deps): update log4j2 to v2.13.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 008c3fb0673420504af208c1ce9696b56293a918
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Dec 18 19:35:17 2019 +0100

    chore(deps): update log4j2 to v2.13.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c68cb24..cd740e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,7 +46,7 @@
         <commons-text.version>1.8</commons-text.version>
         <commons-dbcp2.version>2.7.0</commons-dbcp2.version>
         <assertj.version>3.14.0</assertj.version>
-        <log4j2.version>2.12.1</log4j2.version>
+        <log4j2.version>2.13.0</log4j2.version>
         <slf4j.version>1.7.29</slf4j.version>
         <groovy.version>2.5.8</groovy.version>
         <kotlin.version>1.3.61</kotlin.version>


[camel-k-runtime] 05/05: chore(test): randomize http port for quarkus tests

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 771b9df2342b9f4cca1630f339054bb56fc9ddb9
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Dec 18 19:56:42 2019 +0100

    chore(test): randomize http port for quarkus tests
---
 camel-k-quarkus/camel-k-quarkus-core/it/pom.xml    | 22 ++++++++++++++++++++++
 .../camel-k-quarkus-loader-js/it/pom.xml           | 22 ++++++++++++++++++++++
 .../camel-k-quarkus-loader-xml/it/pom.xml          | 22 ++++++++++++++++++++++
 .../camel-k-quarkus-loader-yaml/it/pom.xml         | 22 ++++++++++++++++++++++
 4 files changed, 88 insertions(+)

diff --git a/camel-k-quarkus/camel-k-quarkus-core/it/pom.xml b/camel-k-quarkus/camel-k-quarkus-core/it/pom.xml
index c5b8d02..65fb737 100644
--- a/camel-k-quarkus/camel-k-quarkus-core/it/pom.xml
+++ b/camel-k-quarkus/camel-k-quarkus-core/it/pom.xml
@@ -68,6 +68,26 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>${build-helper-maven-plugin.version}</version>
+                <executions>
+                    <execution>
+                        <id>reserve-network-port</id>
+                        <goals>
+                            <goal>reserve-network-port</goal>
+                        </goals>
+                        <phase>process-resources</phase>
+                        <configuration>
+                            <portNames>
+                                <portName>test.http.port.jvm</portName>
+                                <portName>test.http.port.native</portName>
+                            </portNames>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus.version}</version>
@@ -84,6 +104,7 @@
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
                     <systemProperties>
+                        <quarkus.http.test-port>${test.http.port.jvm}</quarkus.http.test-port>
                         <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
                     </systemProperties>
                 </configuration>
@@ -112,6 +133,7 @@
                                 </goals>
                                 <configuration>
                                     <systemProperties>
+                                        <quarkus.http.test-port>${test.http.port.native}</quarkus.http.test-port>
                                         <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
                                     </systemProperties>
                                 </configuration>
diff --git a/camel-k-quarkus/camel-k-quarkus-loader-js/it/pom.xml b/camel-k-quarkus/camel-k-quarkus-loader-js/it/pom.xml
index 75f87b6..ee00464 100644
--- a/camel-k-quarkus/camel-k-quarkus-loader-js/it/pom.xml
+++ b/camel-k-quarkus/camel-k-quarkus-loader-js/it/pom.xml
@@ -81,6 +81,26 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>${build-helper-maven-plugin.version}</version>
+                <executions>
+                    <execution>
+                        <id>reserve-network-port</id>
+                        <goals>
+                            <goal>reserve-network-port</goal>
+                        </goals>
+                        <phase>process-resources</phase>
+                        <configuration>
+                            <portNames>
+                                <portName>test.http.port.jvm</portName>
+                                <portName>test.http.port.native</portName>
+                            </portNames>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus.version}</version>
@@ -97,6 +117,7 @@
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
                     <systemProperties>
+                        <quarkus.http.test-port>${test.http.port.jvm}</quarkus.http.test-port>
                         <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
                     </systemProperties>
                 </configuration>
@@ -125,6 +146,7 @@
                                 </goals>
                                 <configuration>
                                     <systemProperties>
+                                        <quarkus.http.test-port>${test.http.port.native}</quarkus.http.test-port>
                                         <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
                                     </systemProperties>
                                 </configuration>
diff --git a/camel-k-quarkus/camel-k-quarkus-loader-xml/it/pom.xml b/camel-k-quarkus/camel-k-quarkus-loader-xml/it/pom.xml
index 0e7d709..c038ba6 100644
--- a/camel-k-quarkus/camel-k-quarkus-loader-xml/it/pom.xml
+++ b/camel-k-quarkus/camel-k-quarkus-loader-xml/it/pom.xml
@@ -81,6 +81,26 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>${build-helper-maven-plugin.version}</version>
+                <executions>
+                    <execution>
+                        <id>reserve-network-port</id>
+                        <goals>
+                            <goal>reserve-network-port</goal>
+                        </goals>
+                        <phase>process-resources</phase>
+                        <configuration>
+                            <portNames>
+                                <portName>test.http.port.jvm</portName>
+                                <portName>test.http.port.native</portName>
+                            </portNames>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus.version}</version>
@@ -97,6 +117,7 @@
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
                     <systemProperties>
+                        <quarkus.http.test-port>${test.http.port.jvm}</quarkus.http.test-port>
                         <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
                     </systemProperties>
                 </configuration>
@@ -125,6 +146,7 @@
                                 </goals>
                                 <configuration>
                                     <systemProperties>
+                                        <quarkus.http.test-port>${test.http.port.native}</quarkus.http.test-port>
                                         <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
                                     </systemProperties>
                                 </configuration>
diff --git a/camel-k-quarkus/camel-k-quarkus-loader-yaml/it/pom.xml b/camel-k-quarkus/camel-k-quarkus-loader-yaml/it/pom.xml
index cf50250..a9e8a32 100644
--- a/camel-k-quarkus/camel-k-quarkus-loader-yaml/it/pom.xml
+++ b/camel-k-quarkus/camel-k-quarkus-loader-yaml/it/pom.xml
@@ -81,6 +81,26 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>${build-helper-maven-plugin.version}</version>
+                <executions>
+                    <execution>
+                        <id>reserve-network-port</id>
+                        <goals>
+                            <goal>reserve-network-port</goal>
+                        </goals>
+                        <phase>process-resources</phase>
+                        <configuration>
+                            <portNames>
+                                <portName>test.http.port.jvm</portName>
+                                <portName>test.http.port.native</portName>
+                            </portNames>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus.version}</version>
@@ -97,6 +117,7 @@
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
                     <systemProperties>
+                        <quarkus.http.test-port>${test.http.port.jvm}</quarkus.http.test-port>
                         <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
                     </systemProperties>
                 </configuration>
@@ -125,6 +146,7 @@
                                 </goals>
                                 <configuration>
                                     <systemProperties>
+                                        <quarkus.http.test-port>${test.http.port.native}</quarkus.http.test-port>
                                         <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
                                     </systemProperties>
                                 </configuration>


[camel-k-runtime] 01/05: chore(deps): update jackson to v2.10.1

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 8047ac0a8b98014222af19b136dab52c7c830458
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Dec 18 19:34:41 2019 +0100

    chore(deps): update jackson to v2.10.1
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 778ef34..c68cb24 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,7 +52,7 @@
         <kotlin.version>1.3.61</kotlin.version>
         <snakeyaml.version>1.25</snakeyaml.version>
         <spock.version>1.3-groovy-2.5</spock.version>
-        <jackson.version>2.10.0</jackson.version>
+        <jackson.version>2.10.1</jackson.version>
         <jaxb-api.version>2.3.0</jaxb-api.version>
         <jaxb-core.version>2.3.0.1</jaxb-core.version>
         <immutables.version>2.8.0</immutables.version>


[camel-k-runtime] 04/05: chore(deps): update immutables to v2.8.3

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 0e2557e74c7cce80c416b0176b7b6fbb7473f533
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Dec 18 19:36:54 2019 +0100

    chore(deps): update immutables to v2.8.3
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index ec67e07..c7dcbbd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,7 +55,7 @@
         <jackson.version>2.10.1</jackson.version>
         <jaxb-api.version>2.3.0</jaxb-api.version>
         <jaxb-core.version>2.3.0.1</jaxb-core.version>
-        <immutables.version>2.8.0</immutables.version>
+        <immutables.version>2.8.3</immutables.version>
         <semver4j.version>3.1.0</semver4j.version>
         <undertow.version>1.4.26.Final</undertow.version>
         <vertx.version>3.8.3</vertx.version>


[camel-k-runtime] 03/05: chore(deps): update slf4j to v1.7.30

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 618ce3ffb57b7b3222bc2dd6d46229f8bcb2fa2a
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Dec 18 19:35:35 2019 +0100

    chore(deps): update slf4j to v1.7.30
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index cd740e1..ec67e07 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,7 +47,7 @@
         <commons-dbcp2.version>2.7.0</commons-dbcp2.version>
         <assertj.version>3.14.0</assertj.version>
         <log4j2.version>2.13.0</log4j2.version>
-        <slf4j.version>1.7.29</slf4j.version>
+        <slf4j.version>1.7.30</slf4j.version>
         <groovy.version>2.5.8</groovy.version>
         <kotlin.version>1.3.61</kotlin.version>
         <snakeyaml.version>1.25</snakeyaml.version>