[
https://issues.apache.org/jira/browse/TIKA-3948?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17766246#comment-17766246
]
ASF GitHub Bot commented on TIKA-3948:
--------------------------------------
theit commented on code in PR #1345:
URL: https://github.com/apache/tika/pull/1345#discussion_r1328345983
##########
tika-parent/pom.xml:
##########
@@ -730,6 +723,16 @@
<artifactId>commons-math3</artifactId>
<version>${commons.math3.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-rs-client</artifactId>
+ <version>${cxf.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-frontend-jaxrs</artifactId>
+ <version>${cxf.version}</version>
+ </dependency>
Review Comment:
This could be simplified:
```xml
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bom</artifactId>
<version>${cxf.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
```
> Migrate to jakarta in Tika 3.x
> ------------------------------
>
> Key: TIKA-3948
> URL: https://issues.apache.org/jira/browse/TIKA-3948
> Project: Tika
> Issue Type: Task
> Reporter: Tim Allison
> Priority: Major
> Labels: tika-3x
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)