diff options
-rw-r--r-- | pom.xml | 11 | ||||
-rw-r--r-- | version.properties | 2 |
2 files changed, 11 insertions, 2 deletions
@@ -14,7 +14,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.onap.dmaap.messagerouter.msgrtr</groupId> <artifactId>msgrtr</artifactId> - <version>1.1.12-SNAPSHOT</version> + <version>1.1.13-SNAPSHOT</version> <packaging>jar</packaging> <name>dmaap-messagerouter-msgrtr</name> <description>Message Router - Restful interface built for kafka</description> @@ -340,6 +340,10 @@ <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-util</artifactId> </exclusion> + <exclusion> + <groupId>javax.mail</groupId> + <artifactId>mail</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -347,6 +351,11 @@ <artifactId>saToolkit</artifactId> <version>0.0.1</version> </dependency> + <dependency> + <groupId>javax.mail</groupId> + <artifactId>mail</artifactId> + <version>1.4.4</version> + </dependency> <!-- our Highland Park library --> <!-- <dependency> <groupId>com.att.nsa</groupId> <artifactId>highlandParkCore</artifactId> diff --git a/version.properties b/version.properties index cecd737..3dd3954 100644 --- a/version.properties +++ b/version.properties @@ -27,7 +27,7 @@ major=1 minor=1 -patch=12 +patch=13 base_version=${major}.${minor}.${patch} |