Skip to content

Commit

Permalink
Add a new profile so all tests can be skipped using the -DskipTests p…
Browse files Browse the repository at this point in the history
…roperty.
  • Loading branch information
darranl committed Jun 14, 2022
1 parent c49cb1d commit ad456ee
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tck/pom.xml
Expand Up @@ -693,5 +693,24 @@
</build>
</profile>

<profile>
<id>skipTests</id>
<activation>
<property>
<name>skipTests</name>
</property>
</activation>

<properties>
<skipEJB>true</skipEJB>
<skipCDI>true</skipCDI>
<skipJSF>true</skipJSF>
<skipJACC>true</skipJACC>

<maven.test.skip>true</maven.test.skip>
<skipTests>true</skipTests>
</properties>
</profile>

</profiles>
</project>

0 comments on commit ad456ee

Please sign in to comment.