Pw fix okhttp dependency exception (#425)

* fixes missing depencency:
 Terminology server http://tx.fhir.orgException in thread "main" java.lang.NoClassDefFoundError: okhttp3/Request$Builder

* added optional tag to not break downstream projects (hapi)

* added dependency to cli as well
This commit is contained in:
Patrick Werner 2021-01-25 14:07:42 +01:00 committed by GitHub
parent 315b62169b
commit ad5b78bd6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,6 @@
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.validation</artifactId>
@ -50,9 +49,12 @@
<groupId>xpp3</groupId>
<artifactId>xpp3_xpath</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.0</version>
</dependency>
</dependencies>
<build>
<plugins>