Skip to content

Commit

Permalink
TIKA-4371 -- exclude (hopefully) unneeded provided dependencies from …
Browse files Browse the repository at this point in the history
…xmlbeans (#2104)
  • Loading branch information
tballison authored Jan 27, 2025
1 parent 5f5aa05 commit 1b8c1e2
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion tika-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,55 @@
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
</dependency>
<!-- prevent zookeeper 3.9.2 from being used in Apache Solr emitter
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>5.3.0</version>
<!-- need to exclude these provided dependencies -->
<exclusions>
<exclusion>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-symbol-solver-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.org.apache.xml.internal</groupId>
<artifactId>resolver</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
</exclusion>
<exclusion>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-tools</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- prevent zookeeper 3.9.2 from being used in Apache Solr emitter
through 9.7.0
TODO recheck when solr > 9.7.0
-->
Expand Down

0 comments on commit 1b8c1e2

Please sign in to comment.