This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch sandbox/camel-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 3f819278f42e7312469dbdf4854f0794ddfd228a Author: Christoph Deppisch <cdeppi...@redhat.com> AuthorDate: Thu Nov 22 09:01:35 2018 +0100 Move integration Maven profile to camel-parent pom.xml in order to enable proper configuration propagation to submodules --- parent/pom.xml | 33 +++++++++++++++++++++++++++++++++ pom.xml | 29 ----------------------------- 2 files changed, 33 insertions(+), 29 deletions(-) diff --git a/parent/pom.xml b/parent/pom.xml index 83609fa..408b277 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -5635,6 +5635,39 @@ </dependencies> </profile> + <profile> + <id>integration</id> + <!--The profile for running the unit and integration test --> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>${maven-surefire-plugin-version}</version> + <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> + <childDelegation>false</childDelegation> + <useFile>true</useFile> + <failIfNoTests>false</failIfNoTests> + <runOrder>alphabetical</runOrder> + <rerunFailingTestsCount>0</rerunFailingTestsCount> + <systemPropertyVariables> + <derby.stream.error.file>target/derby.log</derby.stream.error.file> + <java.awt.headless>${java.awt.headless}</java.awt.headless> + </systemPropertyVariables> + <includes> + <include>**/*Test.*</include> + <include>**/*IntegrationTest.*</include> + </includes> + <excludes> + <exclude>**/*XXXTest.*</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <!-- experimental profile to activate ekstazi http://www.ekstazi.org --> <profile> <id>ekstazi</id> diff --git a/pom.xml b/pom.xml index 8db58e4..853bb82 100644 --- a/pom.xml +++ b/pom.xml @@ -565,35 +565,6 @@ </profile> <profile> - <id>integration</id> - <!--The profile for running the unit and integration test --> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>${maven-surefire-plugin-version}</version> - <configuration> - <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> - <childDelegation>false</childDelegation> - <useFile>true</useFile> - <failIfNoTests>false</failIfNoTests> - <runOrder>alphabetical</runOrder> - <systemPropertyVariables> - <derby.stream.error.file>target/derby.log</derby.stream.error.file> - <java.awt.headless>${java.awt.headless}</java.awt.headless> - </systemPropertyVariables> - <includes> - <include>**/*Test.*</include> - <include>**/*IntegrationTest.*</include> - </includes> - </configuration> - </plugin> - </plugins> - </build> - </profile> - - <profile> <id>deploy</id> <build> <defaultGoal>deploy</defaultGoal>