Merge pull request #78 from hapifhir/r5TestSuitesOnly

switched to excludes - excludes all dstu2-r4 tests
This commit is contained in:
Grahame Grieve 2019-09-14 23:25:22 +10:00 committed by GitHub
commit b63a90bedc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>