Mark Javalin and SLF4j as optional dependencies

This commit is contained in:
jamesagnew 2020-05-09 14:20:40 -04:00
parent 0bf1dedf1e
commit dda4bae0a9
2 changed files with 6 additions and 4 deletions

View File

@ -5,7 +5,7 @@
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.core</artifactId>
<version>4.2.26-SNAPSHOT</version>
<version>4.2.27-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
@ -87,4 +87,4 @@
</plugins>
</build>
</project>
</project>

View File

@ -147,12 +147,14 @@
<groupId>io.javalin</groupId>
<artifactId>javalin</artifactId>
<version>3.8.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.28</version>
</dependency>
<version>1.7.28</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>