This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new 4f8b7de56e Test CamelQuarkusTestSupport in the Quarkus Platform
4f8b7de56e is described below
commit 4f8b7de56e72d2e8e8509bc7d3426fd64909104c
Author: James Netherton <[email protected]>
AuthorDate: Thu May 8 15:06:44 2025 +0100
Test CamelQuarkusTestSupport in the Quarkus Platform
Fixes #7346
---
test-framework/junit5-extension-tests/pom.xml | 16 ++++++++++++++++
tooling/test-list/pom.xml | 6 ++++++
2 files changed, 22 insertions(+)
diff --git a/test-framework/junit5-extension-tests/pom.xml
b/test-framework/junit5-extension-tests/pom.xml
index 5c134fb69f..29a9fccc1f 100644
--- a/test-framework/junit5-extension-tests/pom.xml
+++ b/test-framework/junit5-extension-tests/pom.xml
@@ -66,4 +66,20 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/tooling/test-list/pom.xml b/tooling/test-list/pom.xml
index 31f220e39f..2f5b936a78 100644
--- a/tooling/test-list/pom.xml
+++ b/tooling/test-list/pom.xml
@@ -67,6 +67,12 @@
<exclude>quartz-clustered/pom.xml</exclude>
</excludes>
</fileSet>
+ <fileSet>
+
<directory>${basedir}/../../test-framework/junit5-extension-tests</directory>
+ <includes>
+ <include>pom.xml</include>
+ </includes>
+ </fileSet>
</fileSets>
</configuration>
</plugin>