Hello experts
Could you please give me the answer on few questions:
1. Is it possible to add some delaying between few execution phases of
surefire plugin, e.g 10 seconds (hsqldb says: ".lck file is locked by
another process")?
2. Is it possible to run my surefire executions in the same JVM across all
executions?.
This is the snip of pom.xml:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>execution1</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip
<forkMode>never</forkMode>
<includes>
<include>**/usecases/Test1.java</include>
</includes>
</configuration>
</execution>
<execution>
<id>execution2</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
<forkMode>never</forkMode>
<includes>
<include>**/usecases/Test2.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
Thanks
--
View this message in context:
http://www.nabble.com/Is-it-possible-to-make-some-delaying-between-surefire-plugin-executions--tp15613830s177p15613830.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]