diff --git a/testing/indexer-test-azure/pom.xml b/testing/indexer-test-azure/pom.xml index 9f897aa2140a4d8e6ca82f9d882567fefd9f0014..744346e091543648ed971b079e30c2e80aaf2a83 100644 --- a/testing/indexer-test-azure/pom.xml +++ b/testing/indexer-test-azure/pom.xml @@ -34,9 +34,9 @@ <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> <cucumber.version>1.2.5</cucumber.version> - <azure.keyvault.version>4.1.0</azure.keyvault.version> <junit.jupiter.version>5.6.0</junit.jupiter.version> <elasticsearch.version>7.8.1</elasticsearch.version> + <os-core-common.version>0.11.0-SNAPSHOT</os-core-common.version> </properties> <dependencies> @@ -46,20 +46,41 @@ <groupId>org.opengroup.osdu.indexer</groupId> <artifactId>indexer-test-core</artifactId> <version>0.11.0-SNAPSHOT</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-jdk14</artifactId> + </exclusion> + </exclusions> </dependency> + <dependency> + <groupId>org.opengroup.osdu</groupId> + <artifactId>os-core-common</artifactId> + <version>${os-core-common.version}</version> + <exclusions> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty-common</artifactId> + </exclusion> + </exclusions> + </dependency> <!-- Azure dependencies --> <!--Added dependency for utilizing azure service principle class--> <dependency> <groupId>org.opengroup.osdu</groupId> <artifactId>core-lib-azure</artifactId> - <version>0.0.33</version> + <version>0.11.0-rc4</version> <scope>test</scope> <exclusions> <exclusion> <groupId>com.azure</groupId> <artifactId>azure-core-http-netty</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-slf4j-impl</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -72,11 +93,10 @@ <artifactId>netty-transport</artifactId> <version>4.1.15.Final</version> </dependency> - <dependency> <groupId>com.azure</groupId> - <artifactId>azure-security-keyvault-secrets</artifactId> - <version>${azure.keyvault.version}</version> + <artifactId>azure-core-http-netty</artifactId> + <version>1.2.0</version> </dependency> <!-- Testing --> @@ -168,6 +188,11 @@ </dependency> <!--Logging--> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.7.30</version> + </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-to-slf4j</artifactId> @@ -178,6 +203,16 @@ <artifactId>log4j-api</artifactId> <version>2.13.0</version> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.12.2</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <version>2.12.2</version> + </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId>