Adding javax.mail dependency to pom.xml so that when properties are configured to enable mail, the pom.xml doesn't have to be additionally modified for it to work.

This commit is contained in:
Sean McIlvenna
2019-05-01 09:54:16 -07:00
parent a85beaff43
commit ba4f051375

View File

@@ -46,6 +46,11 @@
<artifactId>mysql-connector-java</artifactId> <artifactId>mysql-connector-java</artifactId>
<version>6.0.5</version> <version>6.0.5</version>
</dependency> </dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
<version>1.5.2</version>
</dependency>
<!-- This dependency includes the core HAPI-FHIR classes --> <!-- This dependency includes the core HAPI-FHIR classes -->
<dependency> <dependency>