You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/06/30 08:27:33 UTC

[camel-quarkus] 02/04: Remove reserve-network-port execution for integration tests

This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a commit to branch 4894/make-groovy-dsl-its-platform-compliant
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 302167d93c678a48a54895a7a9954292665c36c4
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed Jun 28 10:25:59 2023 +0100

    Remove reserve-network-port execution for integration tests
---
 poms/build-parent-it/pom.xml | 45 --------------------------------------------
 1 file changed, 45 deletions(-)

diff --git a/poms/build-parent-it/pom.xml b/poms/build-parent-it/pom.xml
index 781f34feca..577b00ffd5 100644
--- a/poms/build-parent-it/pom.xml
+++ b/poms/build-parent-it/pom.xml
@@ -84,16 +84,6 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-failsafe-plugin</artifactId>
-                    <executions>
-                        <execution>
-                            <configuration>
-                                <systemProperties>
-                                    <quarkus.http.test-port>${test.http.port.native}</quarkus.http.test-port>
-                                    <quarkus.http.test-ssl-port>${test.https.port.native}</quarkus.http.test-ssl-port>
-                                </systemProperties>
-                            </configuration>
-                        </execution>
-                    </executions>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.camel.maven</groupId>
@@ -137,28 +127,6 @@
             </activation>
             <build>
                 <plugins>
-                    <plugin>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>build-helper-maven-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>reserve-network-port</id>
-                                <goals>
-                                    <goal>reserve-network-port</goal>
-                                </goals>
-                                <phase>process-resources</phase>
-                                <configuration>
-                                    <portNames>
-                                        <portName>test.http.port.jvm</portName>
-                                        <portName>test.https.port.jvm</portName>
-                                        <portName>test.http.port.native</portName>
-                                        <portName>test.https.port.native</portName>
-                                    </portNames>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-
                     <plugin>
                         <groupId>${quarkus.platform.group-id}</groupId>
                         <artifactId>quarkus-maven-plugin</artifactId>
@@ -175,20 +143,7 @@
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-surefire-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>default-test</id>
-                                <phase>test</phase>
-                                <configuration>
-                                    <systemProperties>
-                                        <quarkus.http.test-port>${test.http.port.jvm}</quarkus.http.test-port>
-                                        <quarkus.http.test-ssl-port>${test.https.port.jvm}</quarkus.http.test-ssl-port>
-                                    </systemProperties>
-                                </configuration>
-                            </execution>
-                        </executions>
                     </plugin>
-
                 </plugins>
             </build>
         </profile>