From 3098c419d3c97f7e56a00a497818d3ff1df1ba17 Mon Sep 17 00:00:00 2001 From: komakkar <komakkar@microsoft.com> Date: Tue, 8 Sep 2020 13:28:34 +0530 Subject: [PATCH] correcting azure pom --- provider/notification-azure/pom.xml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/provider/notification-azure/pom.xml b/provider/notification-azure/pom.xml index 4bdf206d8..8f5ae7962 100644 --- a/provider/notification-azure/pom.xml +++ b/provider/notification-azure/pom.xml @@ -58,13 +58,28 @@ <dependency> <groupId>org.opengroup.osdu</groupId> <artifactId>os-core-common</artifactId> - <version>0.3.4</version> + <version>0.3.6</version> + </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-security</artifactId> + <exclusions> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-to-slf4j</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.opengroup.osdu</groupId> <artifactId>core-lib-azure</artifactId> - <version>0.0.17</version> + <version>0.0.22</version> <!--<exclusions> <exclusion> <groupId>com.azure</groupId> @@ -119,7 +134,7 @@ <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> - <version>RELEASE</version> + <version>5.6.0</version> <scope>test</scope> </dependency> @@ -181,7 +196,7 @@ <configuration> <classifier>spring-boot</classifier> <mainClass> - azure.Application + org.opengroup.osdu.notification.provider.azure.Application </mainClass> </configuration> </execution> -- GitLab