fixed a test and removed awaitility excludes
mvn install completed successfully
This commit is contained in:
parent
105d857819
commit
daf45db2be
|
@ -146,7 +146,11 @@
|
||||||
<artifactId>logback-classic</artifactId>
|
<artifactId>logback-classic</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.awaitility</groupId>
|
||||||
|
<artifactId>awaitility</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.javassist</groupId>
|
<groupId>org.javassist</groupId>
|
||||||
<artifactId>javassist</artifactId>
|
<artifactId>javassist</artifactId>
|
||||||
|
|
|
@ -802,7 +802,6 @@ public class XmlParserDstu2Test {
|
||||||
|
|
||||||
//@formatter:off
|
//@formatter:off
|
||||||
assertThat(enc, stringContainsInOrder("<Patient xmlns=\"http://hl7.org/fhir\">",
|
assertThat(enc, stringContainsInOrder("<Patient xmlns=\"http://hl7.org/fhir\">",
|
||||||
"<meta>",
|
|
||||||
"<meta>",
|
"<meta>",
|
||||||
"<profile value=\"http://foo/Profile1\"/>",
|
"<profile value=\"http://foo/Profile1\"/>",
|
||||||
"<profile value=\"http://foo/Profile2\"/>",
|
"<profile value=\"http://foo/Profile2\"/>",
|
||||||
|
@ -817,7 +816,6 @@ public class XmlParserDstu2Test {
|
||||||
"<display value=\"label2\"/>",
|
"<display value=\"label2\"/>",
|
||||||
"</tag>",
|
"</tag>",
|
||||||
"</meta>",
|
"</meta>",
|
||||||
"</meta>",
|
|
||||||
"<name>",
|
"<name>",
|
||||||
"<family value=\"FAMILY\"/>",
|
"<family value=\"FAMILY\"/>",
|
||||||
"</name>",
|
"</name>",
|
||||||
|
@ -856,7 +854,6 @@ public class XmlParserDstu2Test {
|
||||||
|
|
||||||
//@formatter:off
|
//@formatter:off
|
||||||
assertThat(enc, stringContainsInOrder("<Patient xmlns=\"http://hl7.org/fhir\">",
|
assertThat(enc, stringContainsInOrder("<Patient xmlns=\"http://hl7.org/fhir\">",
|
||||||
"<meta>",
|
|
||||||
"<meta>",
|
"<meta>",
|
||||||
"<tag>",
|
"<tag>",
|
||||||
"<system value=\"scheme1\"/>",
|
"<system value=\"scheme1\"/>",
|
||||||
|
@ -869,7 +866,6 @@ public class XmlParserDstu2Test {
|
||||||
"<display value=\"label2\"/>",
|
"<display value=\"label2\"/>",
|
||||||
"</tag>",
|
"</tag>",
|
||||||
"</meta>",
|
"</meta>",
|
||||||
"</meta>",
|
|
||||||
"<name>",
|
"<name>",
|
||||||
"<family value=\"FAMILY\"/>",
|
"<family value=\"FAMILY\"/>",
|
||||||
"</name>",
|
"</name>",
|
||||||
|
|
16
pom.xml
16
pom.xml
|
@ -1063,22 +1063,6 @@
|
||||||
<groupId>org.awaitility</groupId>
|
<groupId>org.awaitility</groupId>
|
||||||
<artifactId>awaitility</artifactId>
|
<artifactId>awaitility</artifactId>
|
||||||
<version>4.0.0-rc1</version>
|
<version>4.0.0-rc1</version>
|
||||||
<!-- TODO KHS With this version bump, these excludes should no longer be necessary
|
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.hamcrest</groupId>
|
|
||||||
<artifactId>java-hamcrest</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.hamcrest</groupId>
|
|
||||||
<artifactId>hamcrest-core</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.hamcrest</groupId>
|
|
||||||
<artifactId>hamcrest-library</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
-->
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.codehaus.plexus</groupId>
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
|
Loading…
Reference in New Issue