Skip to content

Commit b7c7cd0

Browse files
Copilottanmaya-panda1CopilotCopilot
authored andcommitted
Upgrade Azure SDK BOM to 1.3.6 and pin msal4j 1.24.1 for sovereign cloud support (#472)
* Initial plan * Upgrade azure-bom-version and pin msal4j 1.24.1 for sovereign cloud support Agent-Logs-Url: https://github.com/Azure/azure-kusto-java/sessions/69c6016a-46bc-4de9-a13a-e0fec18afb26 Co-authored-by: tanmaya-panda1 <108695755+tanmaya-panda1@users.noreply.github.com> * Address review comments: pin msal4j in quickstart, drop redundant BOM override in ingest-v2 - quickstart/pom.xml: add msal4j 1.24.1 dependencyManagement pin since this module is standalone (no parent) and would otherwise resolve an older transitive msal4j via azure-identity, undermining the sovereign-cloud fix. - ingest-v2/pom.xml: remove redundant azure-bom-version override; the property is now inherited from the root parent (also 1.3.6), avoiding future drift. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Restore explicit azure-bom-version 1.3.6 in ingest-v2/pom.xml for clarity Agent-Logs-Url: https://github.com/Azure/azure-kusto-java/sessions/d58014b1-c88c-47d1-b610-0cff08d64b6d Co-authored-by: tanmaya-panda1 <108695755+tanmaya-panda1@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: tanmaya-panda1 <108695755+tanmaya-panda1@users.noreply.github.com> Co-authored-by: Copilot <copilot@github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent f909673 commit b7c7cd0

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

pom.xml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
<revision>7.0.7</revision> <!-- CHANGE THIS to adjust project version-->
3636
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3737
<java.version>1.8</java.version>
38-
<azure-bom-version>1.2.28</azure-bom-version>
38+
<azure-bom-version>1.3.6</azure-bom-version>
39+
<msal4j.version>1.24.1</msal4j.version>
3940
<!-- Versions below are for several dependencies we're using in the data & ingest modules -->
4041
<!-- Ideally, versions below should align with latest databricks runtime dependency versions -->
4142
<!-- Compile dependencies -->
@@ -82,7 +83,15 @@
8283
<module>samples</module>
8384
<module>quickstart</module>
8485
</modules>
85-
86+
<dependencyManagement>
87+
<dependencies>
88+
<dependency>
89+
<groupId>com.microsoft.azure</groupId>
90+
<artifactId>msal4j</artifactId>
91+
<version>${msal4j.version}</version>
92+
</dependency>
93+
</dependencies>
94+
</dependencyManagement>
8695
<build>
8796
<plugins>
8897
<plugin>

quickstart/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
<maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
4141
<slf4j.version>1.8.0-beta4</slf4j.version>
4242
<json.version>20201115</json.version>
43+
<azure-identity.version>1.18.2</azure-identity.version>
44+
<msal4j.version>1.24.1</msal4j.version>
4345
</properties>
4446

4547
<build>
@@ -112,6 +114,11 @@
112114
<type>pom</type>
113115
<scope>import</scope>
114116
</dependency>
117+
<dependency>
118+
<groupId>com.microsoft.azure</groupId>
119+
<artifactId>msal4j</artifactId>
120+
<version>${msal4j.version}</version>
121+
</dependency>
115122
</dependencies>
116123
</dependencyManagement>
117124

0 commit comments

Comments
 (0)