This is an automated email from the ASF dual-hosted git repository. mattmann pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/oodt.git
commit aa2a580898bda64bbcdd9c23c320b7d8c3a5f737 Author: Chris Mattmann <[email protected]> AuthorDate: Sat Aug 4 19:24:12 2018 -0700 Add lucene-backward-codecs.jar to dependency management - inst cleaner tests failed w/o it. --- core/pom.xml | 7 +++++-- workflow/pom.xml | 4 ++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index 200a6af..49486c7 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -331,13 +331,16 @@ the License. <artifactId>lucene-queryparser</artifactId> <version>6.6.5</version> </dependency> - <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-common</artifactId> <version>6.6.5</version> </dependency> - + <dependency> + <groupId>org.apache.lucene</groupId> + <artifactId>lucene-backward-codecs</artifactId> + <version>6.6.5</version> + </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-queryparser</artifactId> diff --git a/workflow/pom.xml b/workflow/pom.xml index 5aaa049..99f12df 100644 --- a/workflow/pom.xml +++ b/workflow/pom.xml @@ -130,6 +130,10 @@ the License. <artifactId>lucene-analyzers-common</artifactId> </dependency> <dependency> + <groupId>org.apache.lucene</groupId> + <artifactId>lucene-backward-codecs</artifactId> + </dependency> + <dependency> <groupId>org.apache.oodt</groupId> <artifactId>cas-cli</artifactId> </dependency>
