This is an automated email from the ASF dual-hosted git repository.
tilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new 08e887eae TIKA-4327: update microsoft graph, reintroduce kiota because
of convergence errors
08e887eae is described below
commit 08e887eaed06060ff66a228dccc710f5ccd6c4cf
Author: Tilman Hausherr <[email protected]>
AuthorDate: Thu Feb 27 15:17:28 2025 +0100
TIKA-4327: update microsoft graph, reintroduce kiota because of convergence
errors
---
.../tika-fetcher-microsoft-graph/pom.xml | 41 +++++++++++++++++++++-
1 file changed, 40 insertions(+), 1 deletion(-)
diff --git a/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
b/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
index 88caaae8f..a699b2e36 100644
--- a/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
+++ b/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
@@ -29,11 +29,12 @@
<name>Apache Tika Microsoft Graph Pipes Fetcher</name>
<properties>
- <microsoft-graph.version>6.29.0</microsoft-graph.version>
+ <microsoft-graph.version>6.30.0</microsoft-graph.version>
<wiremock.version>3.3.1</wiremock.version>
<!-- TODO when updating msal4j >1.18.0, check whether json-smart is still
needed below -->
<msal4j.version>1.19.0</msal4j.version>
<kotlin-stdlib.version>2.1.10</kotlin-stdlib.version>
+ <microsoft-kiota.version>1.8.4</microsoft-kiota.version>
</properties>
<dependencyManagement>
@@ -44,6 +45,44 @@
<artifactId>json-smart</artifactId>
<version>2.5.2</version>
</dependency>
+ <!-- avoid com.microsoft.kiota Dependency convergence errors / outdated
versions
+ since microsoft-graph-core 6.30.0
+ -->
+ <dependency>
+ <groupId>com.microsoft.kiota</groupId>
+ <artifactId>microsoft-kiota-serialization-json</artifactId>
+ <version>${microsoft-kiota.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.microsoft.kiota</groupId>
+ <artifactId>microsoft-kiota-serialization-form</artifactId>
+ <version>${microsoft-kiota.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.microsoft.kiota</groupId>
+ <artifactId>microsoft-kiota-authentication-azure</artifactId>
+ <version>${microsoft-kiota.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.microsoft.kiota</groupId>
+ <artifactId>microsoft-kiota-http-okHttp</artifactId>
+ <version>${microsoft-kiota.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.microsoft.kiota</groupId>
+ <artifactId>microsoft-kiota-abstractions</artifactId>
+ <version>${microsoft-kiota.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.microsoft.kiota</groupId>
+ <artifactId>microsoft-kiota-serialization-text</artifactId>
+ <version>${microsoft-kiota.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.microsoft.kiota</groupId>
+ <artifactId>microsoft-kiota-serialization-multipart</artifactId>
+ <version>${microsoft-kiota.version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>