Skip to content

Commit

Permalink
Move integration-tests/messaging to integration-tests-support/messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Nov 29, 2024
1 parent 7f03434 commit d43943f
Show file tree
Hide file tree
Showing 38 changed files with 77 additions and 101 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging</artifactId>
<version>3.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<name>Camel Quarkus :: Integration Tests :: Messaging Common</name>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<name>Camel Quarkus :: Integration Tests :: Support :: Messaging :: Common</name>
<description>Integration tests for Camel Quarkus Messaging Common</description>

<dependencies>
Expand Down Expand Up @@ -76,22 +77,6 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>virtualDependencies</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging</artifactId>
<version>3.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<name>Camel Quarkus :: Integration Tests :: Messaging JMS</name>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
<name>Camel Quarkus :: Integration Tests :: Support :: Messaging :: JMS</name>
<description>Integration tests for Camel Quarkus Messaging JMS</description>

<dependencies>
Expand All @@ -44,7 +45,7 @@
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
</dependency>

<!-- test dependencies -->
Expand All @@ -60,29 +61,12 @@
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>virtualDependencies</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-build-parent-it</artifactId>
<artifactId>camel-quarkus-integration-tests-support</artifactId>
<version>3.17.0-SNAPSHOT</version>
<relativePath>../../poms/build-parent-it/pom.xml</relativePath>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>camel-quarkus-integration-test-messaging</artifactId>
<name>Camel Quarkus :: Integration Tests :: Messaging</name>
<artifactId>camel-quarkus-integration-tests-support-messaging</artifactId>
<name>Camel Quarkus :: Integration Tests :: Support :: Messaging</name>
<description>Integration tests for Camel Quarkus Messaging extensions</description>
<packaging>pom</packaging>

Expand All @@ -39,6 +39,18 @@

<build>
<plugins>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
Expand All @@ -60,6 +72,17 @@
</execution>
</executions>
</plugin>
<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>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging</artifactId>
<version>3.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>camel-quarkus-integration-test-messaging-sjms</artifactId>
<name>Camel Quarkus :: Integration Tests :: Messaging SJMS</name>
<artifactId>camel-quarkus-integration-tests-support-messaging-sjms</artifactId>
<name>Camel Quarkus :: Integration Tests :: Support :: Messaging :: SJMS</name>
<description>Integration tests for Camel Quarkus Messaging SJMS</description>

<dependencies>
Expand All @@ -44,7 +45,7 @@
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
</dependency>

<!-- test dependencies -->
Expand All @@ -60,29 +61,12 @@
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>virtualDependencies</id>
Expand Down
1 change: 1 addition & 0 deletions integration-tests-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<module>grpc</module>
<module>jdbc</module>
<module>kafka</module>
<module>messaging</module>
<module>mongodb</module>
<module>process-executor-support</module>
<module>splunk</module>
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/activemq/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<!-- Inherit base messaging routes -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
</dependency>

<!-- test dependencies -->
Expand Down Expand Up @@ -74,13 +74,13 @@
<!-- Inherit base messaging tests -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/amqp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<!-- Inherit base messaging routes -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
</dependency>

<!-- Messaging Pooled JMS -->
Expand Down Expand Up @@ -68,13 +68,13 @@
<!-- Inherit base messaging tests -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/jms-artemis-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<!-- Inherit base messaging routes -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
</dependency>

<!-- The JMS client library to test with -->
Expand Down Expand Up @@ -80,13 +80,13 @@
<!-- Inherit base messaging tests -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/jms-ibmmq-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<!-- Inherit base messaging routes -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
</dependency>

<!-- The JMS client library to test with -->
Expand Down Expand Up @@ -96,13 +96,13 @@
<!-- Inherit base messaging tests -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/jms-qpid-amqp-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<!-- Inherit base messaging routes -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
</dependency>

<!-- The JMS client library to test with -->
Expand Down Expand Up @@ -80,13 +80,13 @@
<!-- Inherit base messaging tests -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-jms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-jms</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
1 change: 0 additions & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@
<module>master</module>
<module>master-file</module>
<module>master-openshift</module>
<module>messaging</module>
<module>micrometer</module>
<module>microprofile-fault-tolerance</module>
<module>microprofile-health</module>
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/sjms-artemis-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<!-- Inherit base messaging routes -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-sjms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-sjms</artifactId>
</dependency>

<!-- The JMS client library to test with -->
Expand All @@ -64,13 +64,13 @@
<!-- Inherit base messaging tests -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-sjms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-sjms</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/sjms-qpid-amqp-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<!-- Inherit base messaging routes -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-sjms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-sjms</artifactId>
</dependency>

<!-- The JMS client library to test with -->
Expand Down Expand Up @@ -79,13 +79,13 @@
<!-- Inherit base messaging tests -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-test-messaging-sjms</artifactId>
<artifactId>camel-quarkus-integration-tests-support-messaging-sjms</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
Loading

0 comments on commit d43943f

Please sign in to comment.