This is an automated email from the ASF dual-hosted git repository. grossws pushed a commit to branch add-bom in repository https://gitbox.apache.org/repos/asf/tika.git
commit 1f4670286404b8b739beffa49c07711e3b4d9994 Author: Konstantin Gribov <[email protected]> AuthorDate: Sat Apr 24 02:37:18 2021 +0300 [TIKA-3367] Add dependencyManagement to tika-pipes (make it BOM too) --- tika-pipes/pom.xml | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/tika-pipes/pom.xml b/tika-pipes/pom.xml index 726284f..4ad7499 100644 --- a/tika-pipes/pom.xml +++ b/tika-pipes/pom.xml @@ -40,6 +40,64 @@ <module>tika-pipes-integration-tests</module> </modules> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-emitter-fs</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-emitter-s3</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-emitter-solr</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-fetch-iterator-csv</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-fetch-iterator-jdbc</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-fetch-iterator-s3</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-fetcher-http</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-fetcher-s3</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-httpclient-commons</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-pipes-async</artifactId> + <version>2.0.0-SNAPSHOT</version> + </dependency> + </dependencies> + </dependencyManagement> + <build> <plugins> <plugin>
