Allow to skip autobahntestsuite by specify property skipAutobahnTestsuite

This commit is contained in:
Norman Maurer 2014-02-06 07:10:33 +01:00
parent 417f7264fd
commit d343a258e2

View File

@ -85,6 +85,20 @@
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- Only run the autobahntestsuite if it is not disabled -->
<id>autobahntestsuite</id>
<activation>
<property>
<name>!skipAutobahnTestsuite</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>me.normanmaurer.maven.autobahntestsuite</groupId>
<artifactId>autobahntestsuite-maven-plugin</artifactId>
@ -108,5 +122,7 @@
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>