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 27, 2025
1 parent 3d2d974 commit e3fcf9a
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions tika-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,54 @@
<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>
Expand Down

0 comments on commit e3fcf9a

Please sign in to comment.