Skip to content

[Key Vault JCA] Included the org.brotli:dec library in the list of shaded dependencies to avoid issues when generating and publishing docs to MSLearn #45395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eng/versioning/external_dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ org.apache.maven.archetype:archetype-packaging;3.3.0
org.apache.maven.plugins:maven-archetype-plugin;3.3.0
org.apache.qpid:proton-j;0.34.1
org.asynchttpclient:async-http-client;2.12.1
org.brotli:dec;0.1.2
org.codehaus.groovy:groovy-jsr223;3.0.19
org.codehaus.janino:janino;3.1.10
org.codehaus.woodstox:stax2-api;4.2.2
Expand Down
1 change: 1 addition & 0 deletions sdk/keyvault/azure-security-keyvault-jca/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
### Bugs Fixed

### Other Changes
- Included the `org.brotli:dec` library in the list of shaded dependencies to avoid issues when generating and publishing docs to MSLearn.

## 2.10.1 (2025-05-12)

Expand Down
11 changes: 11 additions & 0 deletions sdk/keyvault/azure-security-keyvault-jca/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@
<artifactId>httpclient5</artifactId>
<version>5.4.3</version> <!-- {x-version-update;org.apache.httpcomponents.client5:httpclient5;external_dependency} -->
</dependency>
<dependency>
<groupId>org.brotli</groupId>
<artifactId>dec</artifactId>
<version>0.1.2</version> <!-- {x-version-update;org.brotli:dec;external_dependency} -->
<optional>true</optional>
</dependency>
<!-- Conscrypt -->
<dependency>
<groupId>org.conscrypt</groupId>
Expand Down Expand Up @@ -204,6 +210,10 @@
<pattern>org.apache.hc</pattern>
<shadedPattern>com.azure.security.keyvault.jca.implementation.shaded.org.apache.hc</shadedPattern>
</relocation>
<relocation>
<pattern>org.brotli</pattern>
<shadedPattern>com.azure.security.keyvault.jca.implementation.shaded.org.brotli</shadedPattern>
</relocation>
<relocation>
<pattern>org.slf4j</pattern>
<shadedPattern>com.azure.security.keyvault.jca.implementation.shaded.org.slf4j</shadedPattern>
Expand Down Expand Up @@ -269,6 +279,7 @@
<include>org.bouncycastle:bcpkix-lts8on:[2.73.6]</include> <!-- {x-include-update;org.bouncycastle:bcpkix-lts8on;external_dependency} -->
<include>org.conscrypt:conscrypt-openjdk-uber:[2.5.2]</include> <!-- {x-include-update;org.conscrypt:conscrypt-openjdk-uber;external_dependency} -->
<include>org.apache.httpcomponents.client5:httpclient5:[5.4.3]</include> <!-- {x-include-update;org.apache.httpcomponents.client5:httpclient5;external_dependency} -->
<include>org.brotli:dec:[0.1.2]</include> <!-- {x-include-update;org.brotli:dec;external_dependency} -->
<include>org.slf4j:slf4j-nop:[1.7.36]</include> <!-- {x-include-update;org.slf4j:slf4j-nop;external_dependency} -->
</includes>
</bannedDependencies>
Expand Down