Skip to content

Commit 3bf40bd

Browse files
Excluding azure core and core http netty from identity/keyvault dependency in encryption (#20331)
* Excluding azure core and core netty from identity dependency in cosmos encryption * moving azure identity as test dependency
1 parent 8792cfa commit 3bf40bd

File tree

1 file changed

+21
-0
lines changed
  • sdk/cosmos/azure-cosmos-encryption

1 file changed

+21
-0
lines changed

sdk/cosmos/azure-cosmos-encryption/pom.xml

+21
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,33 @@ Licensed under the MIT License.
5858
<groupId>com.azure</groupId>
5959
<artifactId>azure-security-keyvault-keys</artifactId>
6060
<version>4.2.6</version> <!-- {x-version-update;com.azure:azure-security-keyvault-keys;dependency} -->
61+
<exclusions>
62+
<exclusion>
63+
<groupId>com.azure</groupId>
64+
<artifactId>azure-core</artifactId>
65+
</exclusion>
66+
<exclusion>
67+
<groupId>com.azure</groupId>
68+
<artifactId>azure-core-http-netty</artifactId>
69+
</exclusion>
70+
</exclusions>
6171
</dependency>
6272

6373
<dependency>
6474
<groupId>com.azure</groupId>
6575
<artifactId>azure-identity</artifactId>
76+
<scope>test</scope>
6677
<version>1.2.4</version> <!-- {x-version-update;com.azure:azure-identity;dependency} -->
78+
<exclusions>
79+
<exclusion>
80+
<groupId>com.azure</groupId>
81+
<artifactId>azure-core</artifactId>
82+
</exclusion>
83+
<exclusion>
84+
<groupId>com.azure</groupId>
85+
<artifactId>azure-core-http-netty</artifactId>
86+
</exclusion>
87+
</exclusions>
6788
</dependency>
6889

6990
<!-- Added this provided dependency to include necessary annotations used by "reactor-core".

0 commit comments

Comments
 (0)