switched to excludes - excludes all dstu2-r4 tests

This commit is contained in:
patrick-werner 2019-09-13 13:09:18 -04:00
parent fd78a70a6a
commit 57f1f70796
1 changed files with 7 additions and 4 deletions

11
pom.xml
View File

@ -150,10 +150,13 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<includes>
<include>**/AllR5Tests</include>
<include>**/AllR5ValidationTests</include>
</includes>
<excludes>
<exclude>**/org/hl7/fhir/dstu2/**</exclude>
<exclude>**/org/hl7/fhir/dstu3/**</exclude>
<exclude>**/org/hl7/fhir/dstu2016may/**</exclude>
<exclude>**/org/hl7/fhir/r4/**</exclude>
<exclude>**/R3R4ConversionTests/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>