Merge pull request #79 from hapifhir/r5TestSuitesOnly

modified include/exclude tests to only do *All* Tests on R5
This commit is contained in:
Patrick Werner 2019-09-14 11:04:35 -04:00 committed by GitHub
commit 542a0f23cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>