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/08/11 15:09:26 UTC

[camel-quarkus] branch master updated (0625d8c -> e19c31f)

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


    from 0625d8c  Merge pull request #122 from ppalaga/190806-user-guide
     new 574470d  chore(build): add missing groovy dependencies
     new 19f1474  chore(build): fix common extension detection
     new e19c31f  chore: regen

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:
 build/scripts/list-camel-quarkus-extensions.groovy       | 2 +-
 docs/modules/ROOT/pages/_partials/common-extensions.adoc | 1 +
 extensions/pom.xml                                       | 2 +-
 integration-tests/pom.xml                                | 6 ++++++
 4 files changed, 9 insertions(+), 2 deletions(-)


[camel-quarkus] 02/03: chore(build): fix common extension detection

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

commit 19f1474755df32256cf77d722ab2dc613175b12b
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Sun Aug 11 17:09:01 2019 +0200

    chore(build): fix common extension detection
---
 build/scripts/list-camel-quarkus-extensions.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/scripts/list-camel-quarkus-extensions.groovy b/build/scripts/list-camel-quarkus-extensions.groovy
index a9a896b..a2d0caa 100644
--- a/build/scripts/list-camel-quarkus-extensions.groovy
+++ b/build/scripts/list-camel-quarkus-extensions.groovy
@@ -28,7 +28,7 @@ final Set componentExtensions = new TreeSet()
 final Set commonExtensions = new TreeSet()
 pom.modules.module.each { node ->
     final String key = node.text().trim()
-    if (key.endsWith("core") || key.endsWith("-common")) {
+    if (key.startsWith("core") || key.endsWith("-common")) {
         commonExtensions.add(key)
     } else {
         componentExtensions.add(key)


[camel-quarkus] 01/03: chore(build): add missing groovy dependencies

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

commit 574470d0cc4fd30c818ae1e3af75b1c2951ce60b
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Sun Aug 11 17:08:43 2019 +0200

    chore(build): add missing groovy dependencies
---
 extensions/pom.xml        | 2 +-
 integration-tests/pom.xml | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/extensions/pom.xml b/extensions/pom.xml
index dba8275..15d4ab8 100644
--- a/extensions/pom.xml
+++ b/extensions/pom.xml
@@ -96,7 +96,7 @@
                 <dependencies>
                     <dependency>
                         <groupId>org.codehaus.groovy</groupId>
-                        <artifactId>groovy</artifactId>
+                        <artifactId>groovy-ant</artifactId>
                         <version>${groovy.version}</version>
                         <scope>runtime</scope>
                     </dependency>
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index 671edcf..bbbcdb6 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -82,6 +82,12 @@
                 <dependencies>
                     <dependency>
                         <groupId>org.codehaus.groovy</groupId>
+                        <artifactId>groovy-ant</artifactId>
+                        <version>${groovy.version}</version>
+                        <scope>runtime</scope>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.codehaus.groovy</groupId>
                         <artifactId>groovy-xml</artifactId>
                         <version>${groovy.version}</version>
                         <scope>runtime</scope>


[camel-quarkus] 03/03: chore: regen

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

commit e19c31f353ef7b58112cfa257b61747e4541045d
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Sun Aug 11 17:09:14 2019 +0200

    chore: regen
---
 docs/modules/ROOT/pages/_partials/common-extensions.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/modules/ROOT/pages/_partials/common-extensions.adoc b/docs/modules/ROOT/pages/_partials/common-extensions.adoc
index f8015af..0b261b1 100644
--- a/docs/modules/ROOT/pages/_partials/common-extensions.adoc
+++ b/docs/modules/ROOT/pages/_partials/common-extensions.adoc
@@ -1,5 +1,6 @@
 // Generated by list-camel-quarkus-extensions.groovy
 * `camel-quarkus-core`
+* `camel-quarkus-core-cloud`
 * `camel-quarkus-jetty-common`
 * `camel-quarkus-xml-common`
 * `camel-quarkus-xstream-common`