This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git.
from 8e7b7cd [maven-release-plugin] prepare for next development iteration new fb7a367 Basic support for testing different configuration styles new 9d6fdf7 Added additional tests for Camel File component new 03c0519 Added more tests for Camel HTTP component new 2dda4d3 Added more tests for Camel JMS Sink component new 1490b20 Added more tests for the AWS Kinesis component new f3e0ad9 Added more tests for Camel AWS S3 source component new c196fb3 Added more tests for Camel AWS SQS source component new c95c593 Added more tests for Camel JMS source component new 11904cc Added more tests for Camel timer source component new 62e65ec Merge pull request #155 from orpiske/test-other-configuration-formats The 346 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: ...ory.java => BasicConnectorPropertyFactory.java} | 74 +++++++++----- .../kafkaconnector/ConnectorPropertyFactory.java | 14 +++ .../camel/kafkaconnector/EndpointUrlBuilder.java | 70 +++++++++++++ .../SinkConnectorPropertyFactory.java | 18 ++-- .../SourceConnectorPropertyFactory.java | 18 ++-- ...tyFactory.java => TransformsConfigBuilder.java} | 34 +++++-- .../clients/aws/sqs/AWSSQSClient.java | 25 +++++ .../kafkaconnect/KafkaConnectEmbedded.java | 2 + .../sink/aws/sns/CamelAWSSNSPropertyFactory.java | 90 ++++++++++------- .../sink/aws/sns/CamelSinkAWSSNSITCase.java | 111 +++++++++++++++++---- .../sink/aws/sqs/CamelAWSSQSPropertyFactory.java | 105 +++++++++++-------- .../sink/aws/sqs/CamelSinkAWSSQSITCase.java | 99 ++++++++++++++---- .../cassandra/CamelCassandraPropertyFactory.java | 63 +++++++----- .../sink/cassandra/CamelSinkCassandraITCase.java | 45 +++++++-- .../CamelElasticSearchIndexPropertyFactory.java | 56 ----------- .../CamelElasticSearchPropertyFactory.java | 63 +++++------- .../CamelSinkElasticSearchITCase.java | 90 ++++++++++++----- .../sink/file/CamelFilePropertyFactory.java | 48 +++++---- .../sink/file/CamelSinkFileITCase.java | 65 +++++++++--- .../sink/http/CamelHTTPPropertyFactory.java | 41 ++++---- .../sink/http/CamelSinkHTTPITCase.java | 64 +++++++++--- .../sink/jms/CamelJMSPropertyFactory.java | 50 +++++----- .../sink/jms/CamelSinkJMSITCase.java | 78 ++++++++++----- .../kinesis/CamelAWSKinesisPropertyFactory.java | 85 ++++++++++------ .../aws/kinesis/CamelSourceAWSKinesisITCase.java | 95 ++++++++++++++---- .../source/aws/s3/CamelAWSS3PropertyFactory.java | 87 ++++++++++------ .../source/aws/s3/CamelSourceAWSS3ITCase.java | 98 +++++++++++++++--- .../source/aws/sqs/CamelAWSSQSPropertyFactory.java | 103 +++++++++++-------- .../source/aws/sqs/CamelSourceAWSSQSITCase.java | 73 ++++++++++++-- .../source/jms/CamelJMSPropertyFactory.java | 50 +++++----- .../source/jms/CamelSourceJMSITCase.java | 97 +++++++++++++----- .../source/timer/CamelSourceTimerITCase.java | 38 +++++-- .../source/timer/CamelTimerPropertyFactory.java | 45 +++++---- tests/src/test/resources/log4j2.properties | 1 + 34 files changed, 1418 insertions(+), 677 deletions(-) copy tests/src/test/java/org/apache/camel/kafkaconnector/{sink/jms/CamelJMSPropertyFactory.java => BasicConnectorPropertyFactory.java} (52%) create mode 100644 tests/src/test/java/org/apache/camel/kafkaconnector/EndpointUrlBuilder.java copy core/src/main/java/org/apache/camel/kafkaconnector/VersionUtil.java => tests/src/test/java/org/apache/camel/kafkaconnector/SinkConnectorPropertyFactory.java (69%) copy core/src/main/java/org/apache/camel/kafkaconnector/VersionUtil.java => tests/src/test/java/org/apache/camel/kafkaconnector/SourceConnectorPropertyFactory.java (67%) copy tests/src/test/java/org/apache/camel/kafkaconnector/{ConnectorPropertyFactory.java => TransformsConfigBuilder.java} (55%) delete mode 100644 tests/src/test/java/org/apache/camel/kafkaconnector/sink/elasticsearch/CamelElasticSearchIndexPropertyFactory.java