re-add release prop

This commit is contained in:
Tadgh 2022-03-28 20:22:00 -07:00
parent f87f468521
commit 77b4c2a1b1
2 changed files with 5 additions and 5 deletions

View File

@ -52,6 +52,7 @@ public class ReadR4Test {
public void testRead() throws Exception {
myRestfulServerExtension.getRestfulServer().registerProvider(new PatientProvider());
HttpGet httpGet = new HttpGet("http://localhost:" + myPort + "/Patient/2?_format=xml&_pretty=true");
try (CloseableHttpResponse status = ourClient.execute(httpGet)) {
@ -75,6 +76,7 @@ public class ReadR4Test {
}
}
@Test
public void testReadUsingPlainProvider() throws Exception {
myRestfulServerExtension.getRestfulServer().registerProvider(new PlainGenericPatientProvider());

View File

@ -852,12 +852,10 @@
<fontawesomeVersion>5.4.1</fontawesomeVersion>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<!-- TODO GGG/JA this is breaking a downstream project. disabling for now-->
<!-- <maven.compiler.release>11</maven.compiler.release>-->
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.testSource>17</maven.compiler.testSource>
<maven.compiler.testTarget>17</maven.compiler.testTarget>
<!-- TODO GGG/JA this is breaking a downstream project. disabling for now-->
<!-- <maven.compiler.testRelease>17</maven.compiler.testRelease>-->
<maven.compiler.testTarget>17</maven.compiler.testTarget>
<maven.compiler.testRelease>17</maven.compiler.testRelease>
</properties>
<dependencyManagement>