Including Ekstazi profile (www.ekstazi.org) to optimize regression tests
This commit is contained in:
parent
8d4fd1dabb
commit
7655cb61e3
|
@ -7,6 +7,7 @@ target
|
||||||
/build
|
/build
|
||||||
/lib
|
/lib
|
||||||
/site-content
|
/site-content
|
||||||
|
.ekstazi
|
||||||
*.class
|
*.class
|
||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
|
|
37
pom.xml
37
pom.xml
|
@ -701,6 +701,43 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
<!-- Ekstazi (www.ekstazi.org) profile to optimize regression testing -->
|
||||||
|
<profile>
|
||||||
|
<id>ekstazi</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>ekstazi</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.ekstazi</groupId>
|
||||||
|
<artifactId>ekstazi-maven-plugin</artifactId>
|
||||||
|
<version>4.4.0</version>
|
||||||
|
<configuration>
|
||||||
|
<forcefailing>true</forcefailing>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>ekstazi</id>
|
||||||
|
<goals>
|
||||||
|
<goal>select</goal>
|
||||||
|
<goal>restore</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<excludesFile>${java.io.tmpdir}/${user.name}EkstaziExcludes</excludesFile>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue