Skip to content

Commit c8d3ea7

Browse files
THausherrbartek
authored andcommitted
Cleanup pom.xml files
1 parent e1e7ce4 commit c8d3ea7

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

tika-grpc/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@
223223
<artifactId>tika-fetcher-http</artifactId>
224224
<version>${project.version}</version>
225225
</dependency>
226-
<dependency>
227226
<dependency>
228227
<groupId>org.apache.tika</groupId>
229228
<artifactId>tika-fetcher-google</artifactId>

tika-parent/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,16 @@
639639
<groupId>com.google.guava</groupId>
640640
<artifactId>guava</artifactId>
641641
<version>${guava.version}</version>
642+
<exclusions>
643+
<exclusion>
644+
<groupId>com.google.errorprone</groupId>
645+
<artifactId>error_prone_annotations</artifactId>
646+
</exclusion>
647+
<exclusion>
648+
<groupId>com.google.j2objc</groupId>
649+
<artifactId>j2objc-annotations</artifactId>
650+
</exclusion>
651+
</exclusions>
642652
</dependency>
643653
<dependency>
644654
<groupId>com.googlecode.json-simple</groupId>
@@ -1048,6 +1058,26 @@
10481058
<artifactId>jspecify</artifactId>
10491059
<version>1.0.0</version>
10501060
</dependency>
1061+
<dependency>
1062+
<groupId>com.google.http-client</groupId>
1063+
<artifactId>google-http-client</artifactId>
1064+
<version>1.45.2</version>
1065+
</dependency>
1066+
<dependency>
1067+
<groupId>com.google.http-client</groupId>
1068+
<artifactId>google-http-client-gson</artifactId>
1069+
<version>1.45.2</version>
1070+
</dependency>
1071+
<dependency>
1072+
<groupId>io.grpc</groupId>
1073+
<artifactId>grpc-context</artifactId>
1074+
<version>1.68.2</version>
1075+
</dependency>
1076+
<dependency>
1077+
<groupId>com.google.auth</groupId>
1078+
<artifactId>google-auth-library-credentials</artifactId>
1079+
<version>1.30.0</version>
1080+
</dependency>
10511081
</dependencies>
10521082
</dependencyManagement>
10531083

tika-pipes/tika-fetchers/tika-fetcher-google/pom.xml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<name>Google Tika Pipes Fetcher</name>
3333

3434
<properties>
35-
<google.api.client.version>2.2.0</google.api.client.version>
35+
<google.api.client.version>2.7.0</google.api.client.version>
3636
</properties>
3737

3838
<dependencies>
@@ -48,12 +48,28 @@
4848
<groupId>com.google.api-client</groupId>
4949
<artifactId>google-api-client</artifactId>
5050
<version>${google.api.client.version}</version>
51+
<exclusions>
52+
<exclusion>
53+
<groupId>com.google.auth</groupId>
54+
<artifactId>google-auth-library-oauth2-http</artifactId>
55+
</exclusion>
56+
</exclusions>
5157
</dependency>
5258

5359
<dependency>
5460
<groupId>com.google.auth</groupId>
5561
<artifactId>google-auth-library-oauth2-http</artifactId>
56-
<version>1.19.0</version>
62+
<version>1.30.0</version>
63+
<exclusions>
64+
<exclusion>
65+
<groupId>com.google.errorprone</groupId>
66+
<artifactId>error_prone_annotations</artifactId>
67+
</exclusion>
68+
<exclusion>
69+
<groupId>com.google.j2objc</groupId>
70+
<artifactId>j2objc-annotations</artifactId>
71+
</exclusion>
72+
</exclusions>
5773
</dependency>
5874

5975
<!-- Google Drive API -->

0 commit comments

Comments
 (0)