Skip to content

Commit

Permalink
TIKA-4379: update microsoft graph, reintroduce kiota because of conve…
Browse files Browse the repository at this point in the history
…rgence errors
  • Loading branch information
THausherr committed Feb 27, 2025
1 parent df6fd17 commit 91cf7c9
Showing 1 changed file with 40 additions and 1 deletion.
41 changes: 40 additions & 1 deletion tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@
<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>
<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>
Expand All @@ -43,6 +44,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>

Expand Down

0 comments on commit 91cf7c9

Please sign in to comment.