Skip to content

Commit

Permalink
Move integration-test-groups/http/common to integration-tests-support…
Browse files Browse the repository at this point in the history
…/http
  • Loading branch information
ppalaga committed Nov 29, 2024
1 parent 232705b commit 0a99db0
Show file tree
Hide file tree
Showing 14 changed files with 51 additions and 17 deletions.
4 changes: 2 additions & 2 deletions integration-test-groups/http/http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependencies>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-http-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down Expand Up @@ -74,7 +74,7 @@
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-http-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions integration-test-groups/http/netty-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependencies>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-http-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
Expand Down Expand Up @@ -77,7 +77,7 @@
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-http-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
1 change: 0 additions & 1 deletion integration-test-groups/http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

<modules>
<!-- extensions a..z; do not remove this comment, it is important when sorting via mvn process-resources -Pformat -->
<module>common</module>
<module>http</module>
<module>netty-http</module>
<module>vertx-http</module>
Expand Down
4 changes: 2 additions & 2 deletions integration-test-groups/http/vertx-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependencies>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-http-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
Expand Down Expand Up @@ -65,7 +65,7 @@
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-http-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
<scope>test</scope>
<type>test-jar</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@

<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-tests-http-common</artifactId>
<name>Camel Quarkus :: Integration Tests :: HTTP :: Common</name>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
<name>Camel Quarkus :: Integration Tests :: Support :: HTTP</name>

<dependencies>
<dependency>
Expand Down Expand Up @@ -76,16 +76,40 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.platform.version}</version>
<executions>
<execution>
<id>build</id>
<phase />
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
<executions>
<execution>
<id>default-test</id>
<phase />
</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>

<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 @@ -59,6 +59,7 @@
<module>custom-kamelet-resource</module>
<module>google</module>
<module>grpc</module>
<module>http</module>
<module>jdbc</module>
<module>kafka</module>
<module>messaging</module>
Expand Down
10 changes: 10 additions & 0 deletions integration-tests/http-grouped/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-multipart-provider</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
</dependency>

<!-- test dependencies -->
<dependency>
Expand Down Expand Up @@ -121,6 +125,12 @@
<artifactId>camel-quarkus-integration-tests-support-certificate-generator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
<scope>test</scope>
<type>test-jar</type>
</dependency>
</dependencies>

<build>
Expand Down
4 changes: 2 additions & 2 deletions poms/bom-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,12 @@
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-http-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
<version>${camel-quarkus.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-integration-tests-http-common</artifactId>
<artifactId>camel-quarkus-integration-tests-support-http</artifactId>
<version>${camel-quarkus.version}</version>
<type>test-jar</type>
</dependency>
Expand Down

0 comments on commit 0a99db0

Please sign in to comment.