modified include/exclude tests to only do *All* Tests on R5

This commit is contained in:
patrick-werner 2019-09-14 10:45:33 -04:00
parent 57f1f70796
commit f93bbc1980
1 changed files with 5 additions and 5 deletions

10
pom.xml
View File

@ -150,12 +150,12 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<includes>
<include>**/All*</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>
<exclude>**/*dstu*/**</exclude>
<exclude>**/*r4*/**</exclude>
</excludes>
</configuration>
</plugin>