Hey team
I'm trying to upgrade my project to 2.0.0. I'm confused. The doc says to include: <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parsers</artifactId> <version>2.0.0</version> </dependency> But the release note says to include modules like: <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parsers-standard</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parsers-extended</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parser-scientific-module</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parser-sqlite3-module</artifactId> <version>2.0.0</version> </dependency> But AFAICS all those modules are marked as pom not as jar. So maven is failing when I'm trying to use them. What am I missing here? David
