You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2020/10/08 06:12:38 UTC

[camel-quarkus] branch quarkus-1.9.0.CR1 created (now 49c50f1)

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

jamesnetherton pushed a change to branch quarkus-1.9.0.CR1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


      at 49c50f1  Upgrade Quarkus to 1.9.0.CR1

This branch includes the following new commits:

     new 49c50f1  Upgrade Quarkus to 1.9.0.CR1

The 1 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.



[camel-quarkus] 01/01: Upgrade Quarkus to 1.9.0.CR1

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

jamesnetherton pushed a commit to branch quarkus-1.9.0.CR1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 49c50f1cdb8cceda7dd0f2b454d30163f4441fd7
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Oct 8 07:12:12 2020 +0100

    Upgrade Quarkus to 1.9.0.CR1
---
 integration-tests/jdbc/src/main/resources/application.properties | 7 +++----
 integration-tests/jpa/src/main/resources/application.properties  | 7 +++----
 integration-tests/sql/src/main/resources/application.properties  | 7 +++----
 pom.xml                                                          | 2 +-
 4 files changed, 10 insertions(+), 13 deletions(-)

diff --git a/integration-tests/jdbc/src/main/resources/application.properties b/integration-tests/jdbc/src/main/resources/application.properties
index a9ba189..778b149 100644
--- a/integration-tests/jdbc/src/main/resources/application.properties
+++ b/integration-tests/jdbc/src/main/resources/application.properties
@@ -18,7 +18,6 @@
 #
 # Quarkus :: DS
 #
-quarkus.datasource.camel-ds.url=jdbc:h2:tcp://localhost/mem:test
-quarkus.datasource.camel-ds.driver=org.h2.Driver
-quarkus.datasource.camel-ds.max-size=8
-quarkus.datasource.camel-ds.min-size=2
+quarkus.datasource.camel-ds.jdbc.url=jdbc:h2:tcp://localhost/mem:test
+quarkus.datasource.camel-ds.db-kind=h2
+quarkus.datasource.camel-ds.jdbc.max-size=8
diff --git a/integration-tests/jpa/src/main/resources/application.properties b/integration-tests/jpa/src/main/resources/application.properties
index d979e98..d0c3199 100644
--- a/integration-tests/jpa/src/main/resources/application.properties
+++ b/integration-tests/jpa/src/main/resources/application.properties
@@ -14,9 +14,8 @@
 ## See the License for the specific language governing permissions and
 ## limitations under the License.
 ## ---------------------------------------------------------------------------
-quarkus.datasource.url=jdbc:h2:tcp://localhost/mem:test
-quarkus.datasource.driver=org.h2.Driver
-quarkus.datasource.max-size=8
-quarkus.datasource.min-size=2
+quarkus.datasource.jdbc.url=jdbc:h2:tcp://localhost/mem:test
+quarkus.datasource.db-kind=h2
+quarkus.datasource.jdbc.max-size=8
 
 quarkus.hibernate-orm.database.generation=drop-and-create
diff --git a/integration-tests/sql/src/main/resources/application.properties b/integration-tests/sql/src/main/resources/application.properties
index 99fc364..723b365 100644
--- a/integration-tests/sql/src/main/resources/application.properties
+++ b/integration-tests/sql/src/main/resources/application.properties
@@ -18,10 +18,9 @@
 #
 # Quarkus Datasource
 #
-quarkus.datasource.camel-sql.url=jdbc:h2:tcp://localhost/mem:test
-quarkus.datasource.camel-sql.driver=org.h2.Driver
-quarkus.datasource.camel-sql.max-size=8
-quarkus.datasource.camel-sql.min-size=2
+quarkus.datasource.camel-sql.jdbc.url=jdbc:h2:tcp://localhost/mem:test
+quarkus.datasource.camel-sql.db-kind=h2
+quarkus.datasource.camel-sql.jdbc.max-size=8
 
 #
 # Camel Quarkus SQL
diff --git a/pom.xml b/pom.xml
index b0e652e..a15f318 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,7 +71,7 @@
         <nimbus-jose-jwt.version>4.41.1</nimbus-jose-jwt.version><!-- Mess in hdfs transitive deps -->
         <okhttp.version>3.14.6</okhttp.version><!-- keep in sync with okio -->
         <okio.version>1.17.2</okio.version><!-- keep in sync with okhttp -->
-        <quarkus.version>1.8.1.Final</quarkus.version>
+        <quarkus.version>1.9.0.CR1</quarkus.version>
         <quarkus-qpid-jms.version>0.18.0</quarkus-qpid-jms.version>
         <protobuf.version>3.11.1</protobuf.version>
         <retrofit.version>2.5.0</retrofit.version>