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)

(cherry picked from commit 1b8c1e2)
  • Loading branch information
tballison committed Jan 28, 2025
1 parent 899a658 commit 8f7438e
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions tika-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -828,6 +828,60 @@
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
</dependency>
<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.6.2 from being used in Apache Solr emitter by solr 8.11.4 -->
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>${zookeeper.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk18on</artifactId>
Expand Down

0 comments on commit 8f7438e

Please sign in to comment.