Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions amqp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: AMQP</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -90,7 +90,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions artemis-elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: Artemis ElasticSearch</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -100,7 +100,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -115,7 +115,7 @@
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>elasticsearch</artifactId>
<artifactId>testcontainers-elasticsearch</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions aws-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<description>Camel Quarkus Example :: Deploying a Camel Route in AWS Lambda</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -89,7 +89,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
16 changes: 3 additions & 13 deletions aws2-s3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: Upload a file to an AWS S3 bucket</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -90,7 +90,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -100,17 +100,7 @@
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>localstack</artifactId>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit4-mock</artifactId>
<artifactId>testcontainers-localstack</artifactId>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
import org.eclipse.microprofile.config.ConfigProvider;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testcontainers.containers.localstack.LocalStackContainer;
import org.testcontainers.containers.output.Slf4jLogConsumer;
import org.testcontainers.localstack.LocalStackContainer;
import org.testcontainers.utility.DockerImageName;
import software.amazon.awssdk.auth.credentials.AwsBasicCredentials;
import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider;
Expand Down Expand Up @@ -65,7 +65,7 @@ public Map<String, String> start() {
.parse(config.getValue("localstack.container.image", String.class))
.asCompatibleSubstituteFor("localstack/localstack");
localstack = new LocalStackContainer(imageName)
.withServices(LocalStackContainer.Service.S3)
.withServices("s3")
.withEnv("LS_LOG", "info")
.withEnv("AWS_ACCESS_KEY_ID", "testAccessKeyId")
.withEnv("AWS_SECRET_ACCESS_KEY", "testSecretKeyId")
Expand All @@ -76,8 +76,7 @@ public Map<String, String> start() {
"camel.component.aws2-s3.secretKey", localstack.getSecretKey(),
"camel.component.aws2-s3.region", localstack.getRegion(),
"camel.component.aws2-s3.override-endpoint", "true",
"camel.component.aws2-s3.uri-endpoint-override",
localstack.getEndpointOverride(LocalStackContainer.Service.S3).toString(),
"camel.component.aws2-s3.uri-endpoint-override", localstack.getEndpoint().toString(),
"cq.aws2-s3.example.bucketName", createBucket());
}

Expand All @@ -86,7 +85,7 @@ private String createBucket() {
clientBuilder
.credentialsProvider(StaticCredentialsProvider
.create(AwsBasicCredentials.create(localstack.getAccessKey(), localstack.getSecretKey())))
.endpointOverride(localstack.getEndpointOverride(LocalStackContainer.Service.S3))
.endpointOverride(localstack.getEndpoint())
.region(Region.of(localstack.getRegion()));
final S3Client s3Client = clientBuilder.build();

Expand Down
9 changes: 2 additions & 7 deletions cluster-leader-election/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<description>Camel Quarkus Example :: Cluster leader election</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -99,12 +99,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions cxf-soap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<description>Camel Quarkus Example :: CXF SOAP</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -103,7 +103,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions data-extract-langchain4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<properties>

<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -112,7 +112,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -127,7 +127,7 @@
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>ollama</artifactId>
<artifactId>testcontainers-ollama</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions fhir/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: FHIR</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -106,7 +106,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions file-bindy-ftp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: File Bindy FTP</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -111,7 +111,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions file-split-log-xml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: File To Log XML DSL</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -94,7 +94,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions health/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: Health Check</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -94,7 +94,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions http-log/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: HTTP to Log</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -90,7 +90,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions jdbc-datasource/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<name>Camel Quarkus :: Examples :: Jdbc - DatataSource - Log</name>
<description>Camel Quarkus Example :: Connect to Database using Datasource</description>
<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -97,7 +97,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions jms-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<name>Camel Quarkus :: Examples :: JMS JPA</name>
<description>Camel Quarkus Example :: JMS JPA</description>
<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>
<quarkiverse-artemis.version>3.11.1</quarkiverse-artemis.version>

Expand Down Expand Up @@ -119,7 +119,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions jpa-idempotent-repository/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<description>Camel Quarkus Example :: JPA Idempotent Repository</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -117,7 +117,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions jta-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<name>Camel Quarkus :: Examples :: JTA JPA</name>
<description>Camel Quarkus Example :: JTA JPA</description>
<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -105,7 +105,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions kafka/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Camel Quarkus Example :: Kafka</description>

<properties>
<quarkus.platform.version>3.30.1</quarkus.platform.version>
<quarkus.platform.version>3.31.0.CR1</quarkus.platform.version>
<camel-quarkus.platform.version>3.31.0-SNAPSHOT</camel-quarkus.platform.version>

<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
Expand Down Expand Up @@ -112,7 +112,7 @@
<!-- Test -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Loading