Author: cmueller Date: Tue Mar 27 22:20:02 2012 New Revision: 1306028 URL: http://svn.apache.org/viewvc?rev=1306028&view=rev Log: CAMEL-5124: Use the forkedProcessTimeoutInSeconds option in maven-surefire-plugin to prevent hanging processes on Windows
Modified: camel/trunk/camel-core/pom.xml camel/trunk/components/camel-amqp/pom.xml camel/trunk/components/camel-apns/pom.xml camel/trunk/components/camel-bam/pom.xml camel/trunk/components/camel-bindy/pom.xml camel/trunk/components/camel-core-xml/pom.xml camel/trunk/components/camel-cxf-transport/pom.xml camel/trunk/components/camel-cxf/pom.xml camel/trunk/components/camel-ftp/pom.xml camel/trunk/components/camel-gae/pom.xml camel/trunk/components/camel-guice/pom.xml camel/trunk/components/camel-hawtdb/pom.xml camel/trunk/components/camel-hazelcast/pom.xml camel/trunk/components/camel-hl7/pom.xml camel/trunk/components/camel-http4/pom.xml camel/trunk/components/camel-ibatis/pom.xml camel/trunk/components/camel-javaspace/pom.xml camel/trunk/components/camel-jaxb/pom.xml camel/trunk/components/camel-jcr/pom.xml camel/trunk/components/camel-jdbc/pom.xml camel/trunk/components/camel-jetty/pom.xml camel/trunk/components/camel-jms/pom.xml camel/trunk/components/camel-jpa/pom.xml camel/trunk/components/camel-kestrel/pom.xml camel/trunk/components/camel-mina/pom.xml camel/trunk/components/camel-mina2/pom.xml camel/trunk/components/camel-mybatis/pom.xml camel/trunk/components/camel-quartz/pom.xml camel/trunk/components/camel-restlet/pom.xml camel/trunk/components/camel-script/pom.xml camel/trunk/components/camel-servlet/pom.xml camel/trunk/components/camel-soap/pom.xml camel/trunk/components/camel-spring/pom.xml camel/trunk/components/camel-sql/pom.xml camel/trunk/components/camel-stream/pom.xml camel/trunk/components/camel-tagsoup/pom.xml camel/trunk/components/camel-test-blueprint/pom.xml camel/trunk/components/camel-twitter/pom.xml camel/trunk/components/camel-web/pom.xml camel/trunk/components/camel-xmpp/pom.xml camel/trunk/examples/camel-example-cxf/pom.xml camel/trunk/examples/camel-example-etl/pom.xml camel/trunk/examples/camel-example-loan-broker/pom.xml camel/trunk/examples/camel-example-route-throttling/pom.xml camel/trunk/examples/pom.xml camel/trunk/pom.xml camel/trunk/tests/camel-itest-karaf/pom.xml camel/trunk/tests/camel-itest-osgi/pom.xml camel/trunk/tests/camel-itest/pom.xml camel/trunk/tests/test-bundles/pom.xml Modified: camel/trunk/camel-core/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/camel-core/pom.xml (original) +++ camel/trunk/camel-core/pom.xml Tue Mar 27 22:20:02 2012 @@ -151,6 +151,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <excludes> <!-- TODO FIXME ASAP --> <exclude>**/XXXTest.*</exclude> Modified: camel/trunk/components/camel-amqp/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-amqp/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-amqp/pom.xml (original) +++ camel/trunk/components/camel-amqp/pom.xml Tue Mar 27 22:20:02 2012 @@ -101,6 +101,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> </configuration> Modified: camel/trunk/components/camel-apns/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-apns/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-apns/pom.xml (original) +++ camel/trunk/components/camel-apns/pom.xml Tue Mar 27 22:20:02 2012 @@ -138,6 +138,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <excludes> <!-- tests may fail on CI servers --> <exclude>**/*Test.*</exclude> Modified: camel/trunk/components/camel-bam/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bam/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-bam/pom.xml (original) +++ camel/trunk/components/camel-bam/pom.xml Tue Mar 27 22:20:02 2012 @@ -87,6 +87,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>always</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> </configuration> </plugin> </plugins> Modified: camel/trunk/components/camel-bindy/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bindy/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-bindy/pom.xml (original) +++ camel/trunk/components/camel-bindy/pom.xml Tue Mar 27 22:20:02 2012 @@ -78,6 +78,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <childDelegation>false</childDelegation> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <useFile>true</useFile> <forkMode>once</forkMode> <excludes> Modified: camel/trunk/components/camel-core-xml/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-core-xml/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-core-xml/pom.xml (original) +++ camel/trunk/components/camel-core-xml/pom.xml Tue Mar 27 22:20:02 2012 @@ -47,6 +47,7 @@ <childDelegation>false</childDelegation> <useFile>true</useFile> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <include>**/*Test.java</include> </includes> Modified: camel/trunk/components/camel-cxf-transport/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf-transport/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-cxf-transport/pom.xml (original) +++ camel/trunk/components/camel-cxf-transport/pom.xml Tue Mar 27 22:20:02 2012 @@ -154,6 +154,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <systemPropertyVariables> Modified: camel/trunk/components/camel-cxf/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-cxf/pom.xml (original) +++ camel/trunk/components/camel-cxf/pom.xml Tue Mar 27 22:20:02 2012 @@ -226,6 +226,7 @@ <configuration> <childDelegation>false</childDelegation> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <reportFormat>brief</reportFormat> <useFile>false</useFile> <runOrder>alphabetical</runOrder> Modified: camel/trunk/components/camel-ftp/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/pom.xml (original) +++ camel/trunk/components/camel-ftp/pom.xml Tue Mar 27 22:20:02 2012 @@ -122,6 +122,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemPropertyVariables> <ftp.enable>${ftp.enable}</ftp.enable> <ftp.server>${ftp.url}</ftp.server> Modified: camel/trunk/components/camel-gae/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-gae/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-gae/pom.xml (original) +++ camel/trunk/components/camel-gae/pom.xml Tue Mar 27 22:20:02 2012 @@ -142,6 +142,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <excludes> <!-- TODO FIXME ASAP --> <exclude>**/XXXTest.*</exclude> Modified: camel/trunk/components/camel-guice/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-guice/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-guice/pom.xml (original) +++ camel/trunk/components/camel-guice/pom.xml Tue Mar 27 22:20:02 2012 @@ -103,6 +103,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <include>**/*Test.*</include> </includes> Modified: camel/trunk/components/camel-hawtdb/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-hawtdb/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-hawtdb/pom.xml (original) +++ camel/trunk/components/camel-hawtdb/pom.xml Tue Mar 27 22:20:02 2012 @@ -77,6 +77,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> </configuration> </plugin> </plugins> Modified: camel/trunk/components/camel-hazelcast/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-hazelcast/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-hazelcast/pom.xml (original) +++ camel/trunk/components/camel-hazelcast/pom.xml Tue Mar 27 22:20:02 2012 @@ -77,6 +77,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>hazelcast.logging.type</name> Modified: camel/trunk/components/camel-hl7/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-hl7/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-hl7/pom.xml (original) +++ camel/trunk/components/camel-hl7/pom.xml Tue Mar 27 22:20:02 2012 @@ -104,6 +104,7 @@ <childDelegation>false</childDelegation> <useFile>true</useFile> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <include>**/*Test.*</include> </includes> Modified: camel/trunk/components/camel-http4/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-http4/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-http4/pom.xml (original) +++ camel/trunk/components/camel-http4/pom.xml Tue Mar 27 22:20:02 2012 @@ -83,6 +83,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> </configuration> </plugin> </plugins> Modified: camel/trunk/components/camel-ibatis/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ibatis/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-ibatis/pom.xml (original) +++ camel/trunk/components/camel-ibatis/pom.xml Tue Mar 27 22:20:02 2012 @@ -81,6 +81,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>derby.stream.error.file</name> Modified: camel/trunk/components/camel-javaspace/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-javaspace/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-javaspace/pom.xml (original) +++ camel/trunk/components/camel-javaspace/pom.xml Tue Mar 27 22:20:02 2012 @@ -103,6 +103,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>false</skipTests> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> </configuration> </plugin> </plugins> @@ -116,6 +117,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> </configuration> </plugin> </plugins> Modified: camel/trunk/components/camel-jaxb/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jaxb/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-jaxb/pom.xml (original) +++ camel/trunk/components/camel-jaxb/pom.xml Tue Mar 27 22:20:02 2012 @@ -96,6 +96,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <excludes> <!-- TODO FIXME ASAP --> </excludes> Modified: camel/trunk/components/camel-jcr/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jcr/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-jcr/pom.xml (original) +++ camel/trunk/components/camel-jcr/pom.xml Tue Mar 27 22:20:02 2012 @@ -73,6 +73,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>derby.stream.error.file</name> Modified: camel/trunk/components/camel-jdbc/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jdbc/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-jdbc/pom.xml (original) +++ camel/trunk/components/camel-jdbc/pom.xml Tue Mar 27 22:20:02 2012 @@ -74,6 +74,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>derby.stream.error.file</name> Modified: camel/trunk/components/camel-jetty/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jetty/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-jetty/pom.xml (original) +++ camel/trunk/components/camel-jetty/pom.xml Tue Mar 27 22:20:02 2012 @@ -118,6 +118,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <excludes> <!-- TODO FIXME ASAP --> <!-- need to fix this issue when we rewrite the stream cache--> Modified: camel/trunk/components/camel-jms/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jms/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-jms/pom.xml (original) +++ camel/trunk/components/camel-jms/pom.xml Tue Mar 27 22:20:02 2012 @@ -142,6 +142,7 @@ <childDelegation>false</childDelegation> <useFile>true</useFile> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> </configuration> </plugin> Modified: camel/trunk/components/camel-jpa/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jpa/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-jpa/pom.xml (original) +++ camel/trunk/components/camel-jpa/pom.xml Tue Mar 27 22:20:02 2012 @@ -108,6 +108,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>derby.stream.error.file</name> Modified: camel/trunk/components/camel-kestrel/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-kestrel/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-kestrel/pom.xml (original) +++ camel/trunk/components/camel-kestrel/pom.xml Tue Mar 27 22:20:02 2012 @@ -86,6 +86,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <enableAssertions>false</enableAssertions> </configuration> </plugin> Modified: camel/trunk/components/camel-mina/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-mina/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-mina/pom.xml (original) +++ camel/trunk/components/camel-mina/pom.xml Tue Mar 27 22:20:02 2012 @@ -88,6 +88,7 @@ <childDelegation>false</childDelegation> <useFile>true</useFile> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <include>**/*Test.java</include> </includes> Modified: camel/trunk/components/camel-mina2/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-mina2/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-mina2/pom.xml (original) +++ camel/trunk/components/camel-mina2/pom.xml Tue Mar 27 22:20:02 2012 @@ -86,6 +86,7 @@ <childDelegation>false</childDelegation> <useFile>true</useFile> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <include>**/*Test.java</include> </includes> Modified: camel/trunk/components/camel-mybatis/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-mybatis/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-mybatis/pom.xml (original) +++ camel/trunk/components/camel-mybatis/pom.xml Tue Mar 27 22:20:02 2012 @@ -77,6 +77,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>derby.stream.error.file</name> Modified: camel/trunk/components/camel-quartz/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-quartz/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-quartz/pom.xml (original) +++ camel/trunk/components/camel-quartz/pom.xml Tue Mar 27 22:20:02 2012 @@ -114,6 +114,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <excludes> Modified: camel/trunk/components/camel-restlet/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-restlet/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-restlet/pom.xml (original) +++ camel/trunk/components/camel-restlet/pom.xml Tue Mar 27 22:20:02 2012 @@ -104,6 +104,7 @@ <configuration> <childDelegation>false</childDelegation> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <reportFormat>brief</reportFormat> <useFile>false</useFile> <runOrder>alphabetical</runOrder> Modified: camel/trunk/components/camel-script/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-script/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-script/pom.xml (original) +++ camel/trunk/components/camel-script/pom.xml Tue Mar 27 22:20:02 2012 @@ -135,6 +135,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <includes> Modified: camel/trunk/components/camel-servlet/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-servlet/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-servlet/pom.xml (original) +++ camel/trunk/components/camel-servlet/pom.xml Tue Mar 27 22:20:02 2012 @@ -122,6 +122,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <includes> Modified: camel/trunk/components/camel-soap/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-soap/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-soap/pom.xml (original) +++ camel/trunk/components/camel-soap/pom.xml Tue Mar 27 22:20:02 2012 @@ -130,6 +130,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <excludes> <!-- TODO FIXME ASAP --> </excludes> Modified: camel/trunk/components/camel-spring/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-spring/pom.xml (original) +++ camel/trunk/components/camel-spring/pom.xml Tue Mar 27 22:20:02 2012 @@ -230,6 +230,7 @@ <childDelegation>false</childDelegation> <useFile>true</useFile> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>derby.stream.error.file</name> Modified: camel/trunk/components/camel-sql/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-sql/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-sql/pom.xml (original) +++ camel/trunk/components/camel-sql/pom.xml Tue Mar 27 22:20:02 2012 @@ -90,6 +90,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>derby.stream.error.file</name> Modified: camel/trunk/components/camel-stream/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-stream/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-stream/pom.xml (original) +++ camel/trunk/components/camel-stream/pom.xml Tue Mar 27 22:20:02 2012 @@ -69,6 +69,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <excludes> <!-- TODO FIXME ASAP --> <!-- need to fix this issue when we rewrite the stream cache--> Modified: camel/trunk/components/camel-tagsoup/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-tagsoup/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-tagsoup/pom.xml (original) +++ camel/trunk/components/camel-tagsoup/pom.xml Tue Mar 27 22:20:02 2012 @@ -88,6 +88,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <failIfNoTests>false</failIfNoTests> Modified: camel/trunk/components/camel-test-blueprint/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-test-blueprint/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-test-blueprint/pom.xml (original) +++ camel/trunk/components/camel-test-blueprint/pom.xml Tue Mar 27 22:20:02 2012 @@ -109,6 +109,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> </configuration> </plugin> </plugins> Modified: camel/trunk/components/camel-twitter/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-twitter/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-twitter/pom.xml (original) +++ camel/trunk/components/camel-twitter/pom.xml Tue Mar 27 22:20:02 2012 @@ -76,6 +76,7 @@ <childDelegation>false</childDelegation> <useFile>true</useFile> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <!-- Here we only run test of --> <include>**/*UriConfigurationTest.java</include> @@ -96,6 +97,7 @@ <childDelegation>false</childDelegation> <useFile>true</useFile> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <include>**/*Test.java</include> </includes> Modified: camel/trunk/components/camel-web/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-web/pom.xml (original) +++ camel/trunk/components/camel-web/pom.xml Tue Mar 27 22:20:02 2012 @@ -221,6 +221,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <!-- these settings are mandatory to avoid SureFire giving a bogus system property to the web container Modified: camel/trunk/components/camel-xmpp/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-xmpp/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/components/camel-xmpp/pom.xml (original) +++ camel/trunk/components/camel-xmpp/pom.xml Tue Mar 27 22:20:02 2012 @@ -75,6 +75,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemProperties> <property> <name>xmpp.enable</name> Modified: camel/trunk/examples/camel-example-cxf/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-cxf/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/examples/camel-example-cxf/pom.xml (original) +++ camel/trunk/examples/camel-example-cxf/pom.xml Tue Mar 27 22:20:02 2012 @@ -268,6 +268,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <includes> Modified: camel/trunk/examples/camel-example-etl/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-etl/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/examples/camel-example-etl/pom.xml (original) +++ camel/trunk/examples/camel-example-etl/pom.xml Tue Mar 27 22:20:02 2012 @@ -136,6 +136,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <excludes> Modified: camel/trunk/examples/camel-example-loan-broker/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-loan-broker/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/examples/camel-example-loan-broker/pom.xml (original) +++ camel/trunk/examples/camel-example-loan-broker/pom.xml Tue Mar 27 22:20:02 2012 @@ -138,6 +138,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <includes> Modified: camel/trunk/examples/camel-example-route-throttling/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-route-throttling/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/examples/camel-example-route-throttling/pom.xml (original) +++ camel/trunk/examples/camel-example-route-throttling/pom.xml Tue Mar 27 22:20:02 2012 @@ -147,6 +147,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>once</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <includes> Modified: camel/trunk/examples/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/examples/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/examples/pom.xml (original) +++ camel/trunk/examples/pom.xml Tue Mar 27 22:20:02 2012 @@ -97,6 +97,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <include>**/*Test.*</include> </includes> Modified: camel/trunk/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/pom.xml (original) +++ camel/trunk/pom.xml Tue Mar 27 22:20:02 2012 @@ -487,6 +487,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <!--forkMode>pertest</forkMode--> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <failIfNoTests>false</failIfNoTests> @@ -897,6 +898,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <childDelegation>false</childDelegation> <useFile>true</useFile> <includes> Modified: camel/trunk/tests/camel-itest-karaf/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest-karaf/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/tests/camel-itest-karaf/pom.xml (original) +++ camel/trunk/tests/camel-itest-karaf/pom.xml Tue Mar 27 22:20:02 2012 @@ -185,16 +185,12 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <!-- when the local repo location has been specified, we need to pass on this information to PAX mvn url --> <argLine>-Dorg.ops4j.pax.url.mvn.localRepository=${maven.repo.local}</argLine> - </configuration> - </plugin> - <plugin> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> <excludes> <!-- TODO: temporary disable unit test to let TC not hang --> <exclude>**/*Test.*</exclude> Modified: camel/trunk/tests/camel-itest-osgi/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest-osgi/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/tests/camel-itest-osgi/pom.xml (original) +++ camel/trunk/tests/camel-itest-osgi/pom.xml Tue Mar 27 22:20:02 2012 @@ -381,6 +381,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <includes> <include>**/*Test.*</include> </includes> @@ -463,10 +464,12 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <!-- when the local repo location has been specified, we need to pass on this information to PAX mvn url --> + <argLine>-Dorg.ops4j.pax.url.mvn.localRepository=${maven.repo.local}</argLine> <includes> <include>**/*Test.*</include> Modified: camel/trunk/tests/camel-itest/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/tests/camel-itest/pom.xml (original) +++ camel/trunk/tests/camel-itest/pom.xml Tue Mar 27 22:20:02 2012 @@ -326,6 +326,7 @@ <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <excludes> <!-- TODO FIXME ASAP --> <exclude>**/XXXTest.*</exclude> Modified: camel/trunk/tests/test-bundles/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tests/test-bundles/pom.xml?rev=1306028&r1=1306027&r2=1306028&view=diff ============================================================================== --- camel/trunk/tests/test-bundles/pom.xml (original) +++ camel/trunk/tests/test-bundles/pom.xml Tue Mar 27 22:20:02 2012 @@ -51,6 +51,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <skip>true</skip> </configuration> </plugin>