org.apache.tika.metadata.filter package missing from uberjar
Hi,
We have a project working with Uberjar 13 and we want to go to 20. What is holding us back is that on every newer uberjars up to 20 I get an Error when trying to instantiate Tika. Create a unit test and just put this in it
Tika tika = new Tika(); // throws java.lang.NoClassDefFoundError: org/apache/tika/metadata/filter/MetadataFilter
Looking at javadocs and the decompiled class there should be this package https://javadoc.io/doc/org.apache.tika/tika-core/latest/org/apache/tika/metadata/filter/package-summary.html
This screenshot shows it is missing from the uberjar itself
Adding tika as a test dependency solves the problem
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.26</version>
<scope>test</scope>
</dependency>
We would prefer not having to do that as it becomes a manual maintenance step as new uberjars come out. Is it possible for Adobe team to amend the uberjar by any chance ?
