Skip to content

Commit 6b26519

Browse files
jomin7cunningt
andauthored
Build: Update Camel version to 4.19.0-SNAPSHOT (#157)
* Build: Update Camel version to 4.19.0-SNAPSHOT Updated the parent and dependency versions from 4.18.0-SNAPSHOT to 4.19.0-SNAPSHOT to align with the current development cycle and fix build failures caused by missing artifacts in the Apache Snapshot repository. * Use JUnit6 for camel-test --------- Co-authored-by: jomin mathew <> Co-authored-by: Tom Cunningham <tcunning@redhat.com>
1 parent 14e13f6 commit 6b26519

132 files changed

Lines changed: 196 additions & 196 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

aggregate-dist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.example</groupId>
2626
<artifactId>camel-examples</artifactId>
27-
<version>4.18.0-SNAPSHOT</version>
27+
<version>4.19.0-SNAPSHOT</version>
2828
</parent>
2929

3030
<artifactId>camel-example-aggregate-dist</artifactId>

aggregate/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.example</groupId>
2626
<artifactId>camel-examples</artifactId>
27-
<version>4.18.0-SNAPSHOT</version>
27+
<version>4.19.0-SNAPSHOT</version>
2828
</parent>
2929

3030
<artifactId>camel-example-aggregate</artifactId>
@@ -84,7 +84,7 @@
8484
<!-- for testing -->
8585
<dependency>
8686
<groupId>org.apache.camel</groupId>
87-
<artifactId>camel-test-spring-junit5</artifactId>
87+
<artifactId>camel-test-spring-junit6</artifactId>
8888
<scope>test</scope>
8989
</dependency>
9090

aggregate/src/test/java/org/apache/camel/example/AggregateTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
import org.apache.camel.builder.AdviceWithRouteBuilder;
2323
import org.apache.camel.component.mock.MockEndpoint;
2424
import org.apache.camel.model.ModelCamelContext;
25-
import org.apache.camel.test.spring.junit5.CamelSpringTest;
26-
import org.apache.camel.test.spring.junit5.MockEndpoints;
27-
import org.apache.camel.test.spring.junit5.UseAdviceWith;
25+
import org.apache.camel.test.spring.junit6.CamelSpringTest;
26+
import org.apache.camel.test.spring.junit6.MockEndpoints;
27+
import org.apache.camel.test.spring.junit6.UseAdviceWith;
2828
import org.junit.jupiter.api.Test;
2929
import org.springframework.beans.factory.annotation.Autowired;
3030
import org.springframework.test.context.ContextConfiguration;

aws/main-endpointdsl-aws-kcl-kinesis/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.camel.example</groupId>
2727
<artifactId>camel-examples-aws-parent</artifactId>
28-
<version>4.18.0-SNAPSHOT</version>
28+
<version>4.19.0-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>camel-example-main-endpointdsl-aws2-kinesis-kcl</artifactId>

aws/main-endpointdsl-aws2-s3-kafka/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.camel.example</groupId>
2727
<artifactId>camel-examples-aws-parent</artifactId>
28-
<version>4.18.0-SNAPSHOT</version>
28+
<version>4.19.0-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>camel-example-main-endpointdsl-aws2-s3-kafka</artifactId>

aws/main-endpointdsl-aws2-s3-kafka/src/test/java/org/apache/camel/example/AwsS3KafkaTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import org.apache.camel.test.infra.aws2.services.AWSServiceFactory;
3131
import org.apache.camel.test.infra.kafka.services.KafkaService;
3232
import org.apache.camel.test.infra.kafka.services.KafkaServiceFactory;
33-
import org.apache.camel.test.main.junit5.CamelMainTestSupport;
33+
import org.apache.camel.test.main.junit6.CamelMainTestSupport;
3434
import org.junit.jupiter.api.Test;
3535
import org.junit.jupiter.api.extension.RegisterExtension;
3636

aws/main-endpointdsl-aws2-s3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.camel.example</groupId>
2727
<artifactId>camel-examples-aws-parent</artifactId>
28-
<version>4.18.0-SNAPSHOT</version>
28+
<version>4.19.0-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>camel-example-main-endpointdsl-aws2-s3</artifactId>

aws/main-endpointdsl-aws2-s3/src/test/java/org/apache/camel/example/AwsS3Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import org.apache.camel.test.infra.aws.common.services.AWSService;
2828
import org.apache.camel.test.infra.aws2.clients.AWSSDKClientUtils;
2929
import org.apache.camel.test.infra.aws2.services.AWSServiceFactory;
30-
import org.apache.camel.test.main.junit5.CamelMainTestSupport;
30+
import org.apache.camel.test.main.junit6.CamelMainTestSupport;
3131
import org.junit.jupiter.api.Test;
3232
import org.junit.jupiter.api.extension.RegisterExtension;
3333

aws/main-endpointdsl-aws2/aws2-eventbridge-creator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.camel.example</groupId>
2727
<artifactId>camel-example-main-endpointdsl-aws2</artifactId>
28-
<version>4.18.0-SNAPSHOT</version>
28+
<version>4.19.0-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>aws2-eventbridge-creator</artifactId>

aws/main-endpointdsl-aws2/aws2-s3-events-inject/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.camel.example</groupId>
2727
<artifactId>camel-example-main-endpointdsl-aws2</artifactId>
28-
<version>4.18.0-SNAPSHOT</version>
28+
<version>4.19.0-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>aws2-s3-events-inject</artifactId>

0 commit comments

Comments
 (0)