This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a change to branch 2.7.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
from fc1c995 Prevent various plugins from resolving
commons-logging:commons-logging #3517
new 3bf0a5f Improve SQL extension docs for native mode aggregation
repository suppport
new fc1f704 Expand Cassandra CQL extension test coverage
new a540259 Build with Maven 3.8.4
new c6b3ac2 Clean up usage of quarkus.test.flat-class-path
new f906d67 Fix groovy antora update script execution
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:
.mvn/wrapper/maven-wrapper.properties | 2 +-
.../pages/reference/extensions/cassandraql.adoc | 9 +
.../ROOT/pages/reference/extensions/sql.adoc | 9 +-
docs/pom.xml | 12 +
.../deployment/CassandraqlProcessor.java | 7 -
.../runtime/src/main/doc/configuration.adoc | 5 +
.../sql/runtime/src/main/doc/configuration.adoc | 9 +-
integration-tests/cassandraql/pom.xml | 53 +-
.../cassandraql/it/CassandraqlProducers.java | 61 +
.../cassandraql/it/CassandraqlResource.java | 141 +-
.../cassandraql/it/CassandraqlRoutes.java | 127 ++
.../cassandraql/it/CustomLoadBalancingPolicy.java | 47 +
.../quarkus/component/cassandraql/it/Employee.java | 8 +-
.../src/main/resources/application.properties | 5 +-
.../component/cassandraql/it/CassandraqlTest.java | 208 ++-
.../cassandraql/it/CassandraqlTestResource.java | 55 +-
.../src/test/resources/cassandra/cassandra.yaml | 1456 ++++++++++++++++++++
.../src/main/resources/application.properties | 1 -
.../ftp/src/main/resources/application.properties | 17 -
.../jslt/src/main/resources/application.properties | 1 -
.../src/main/resources/application.properties | 1 -
21 files changed, 2090 insertions(+), 144 deletions(-)
create mode 100644
extensions/cassandraql/runtime/src/main/doc/configuration.adoc
create mode 100644
integration-tests/cassandraql/src/main/java/org/apache/camel/quarkus/component/cassandraql/it/CassandraqlProducers.java
create mode 100644
integration-tests/cassandraql/src/main/java/org/apache/camel/quarkus/component/cassandraql/it/CassandraqlRoutes.java
create mode 100644
integration-tests/cassandraql/src/main/java/org/apache/camel/quarkus/component/cassandraql/it/CustomLoadBalancingPolicy.java
copy integration-tests/{jslt =>
cassandraql}/src/main/resources/application.properties (81%)
create mode 100644
integration-tests/cassandraql/src/test/resources/cassandra/cassandra.yaml
delete mode 100644
integration-tests/ftp/src/main/resources/application.properties