Clean up dependencies (#4306)

This commit is contained in:
Jesse Bonzo 2023-02-15 14:31:28 -08:00 committed by GitHub
parent 00aba0f88d
commit 39797b1749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 8 deletions

View File

@ -35,7 +35,6 @@
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-models</artifactId>
<version>2.1.7</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
@ -45,6 +44,11 @@
<groupId>org.webjars</groupId>
<artifactId>swagger-ui</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Thymeleaf -->
<dependency>

View File

@ -19,11 +19,6 @@
<name>HAPI FHIR Structures - FHIR R4</name>
<dependencies>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
@ -57,7 +52,7 @@
</exclusions>
</dependency>
<!--
<!--
Optional dependencies from RI codebase
-->
<dependency>
@ -83,7 +78,7 @@
<!--
Test dependencies on other optional parts of HAPI
Test dependencies on other optional parts of HAPI
-->
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
@ -96,6 +91,7 @@
<artifactId>hapi-fhir-client</artifactId>
<version>${project.version}</version>
<optional>true</optional>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
@ -107,6 +103,7 @@
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<optional>true</optional>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>