Skip to content

Commit 91cf7c9

Browse files
committed
TIKA-4379: update microsoft graph, reintroduce kiota because of convergence errors
1 parent df6fd17 commit 91cf7c9

File tree

1 file changed

+40
-1
lines changed
  • tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph

1 file changed

+40
-1
lines changed

tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml

+40-1
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@
2929
<name>Apache Tika Microsoft Graph Pipes Fetcher</name>
3030

3131
<properties>
32-
<microsoft-graph.version>6.29.0</microsoft-graph.version>
32+
<microsoft-graph.version>6.30.0</microsoft-graph.version>
3333
<wiremock.version>3.3.1</wiremock.version>
3434
<msal4j.version>1.19.0</msal4j.version>
3535
<kotlin-stdlib.version>2.1.10</kotlin-stdlib.version>
36+
<microsoft-kiota.version>1.8.4</microsoft-kiota.version>
3637
</properties>
3738

3839
<dependencyManagement>
@@ -43,6 +44,44 @@
4344
<artifactId>json-smart</artifactId>
4445
<version>2.5.2</version>
4546
</dependency>
47+
<!-- avoid com.microsoft.kiota Dependency convergence errors / outdated versions
48+
since microsoft-graph-core 6.30.0
49+
-->
50+
<dependency>
51+
<groupId>com.microsoft.kiota</groupId>
52+
<artifactId>microsoft-kiota-serialization-json</artifactId>
53+
<version>${microsoft-kiota.version}</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>com.microsoft.kiota</groupId>
57+
<artifactId>microsoft-kiota-serialization-form</artifactId>
58+
<version>${microsoft-kiota.version}</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>com.microsoft.kiota</groupId>
62+
<artifactId>microsoft-kiota-authentication-azure</artifactId>
63+
<version>${microsoft-kiota.version}</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.microsoft.kiota</groupId>
67+
<artifactId>microsoft-kiota-http-okHttp</artifactId>
68+
<version>${microsoft-kiota.version}</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>com.microsoft.kiota</groupId>
72+
<artifactId>microsoft-kiota-abstractions</artifactId>
73+
<version>${microsoft-kiota.version}</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>com.microsoft.kiota</groupId>
77+
<artifactId>microsoft-kiota-serialization-text</artifactId>
78+
<version>${microsoft-kiota.version}</version>
79+
</dependency>
80+
<dependency>
81+
<groupId>com.microsoft.kiota</groupId>
82+
<artifactId>microsoft-kiota-serialization-multipart</artifactId>
83+
<version>${microsoft-kiota.version}</version>
84+
</dependency>
4685
</dependencies>
4786
</dependencyManagement>
4887

0 commit comments

Comments
 (0)