GEODE-3291: newly added lucene-analyzers-phonetic will automatically add its dependency commons-codec. Need to let junit to expect this new jar.
geode-lucene does not need to explicitly include commons-codec in its test. Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/e0aa1b0c Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/e0aa1b0c Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/e0aa1b0c Branch: refs/heads/feature/GEM-1483 Commit: e0aa1b0c469eac4d0259e90a3901070d67963cfb Parents: f1326be Author: zhouxh <[email protected]> Authored: Wed Jul 26 13:56:00 2017 -0700 Committer: zhouxh <[email protected]> Committed: Wed Jul 26 13:57:55 2017 -0700 ---------------------------------------------------------------------- geode-assembly/src/test/resources/expected_jars.txt | 1 + geode-lucene/build.gradle | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/e0aa1b0c/geode-assembly/src/test/resources/expected_jars.txt ---------------------------------------------------------------------- diff --git a/geode-assembly/src/test/resources/expected_jars.txt b/geode-assembly/src/test/resources/expected_jars.txt index a082539..bc49bce 100644 --- a/geode-assembly/src/test/resources/expected_jars.txt +++ b/geode-assembly/src/test/resources/expected_jars.txt @@ -10,6 +10,7 @@ commons-io commons-lang commons-logging commons-modeler +commons-codec fast-classpath-scanner fastutil findbugs-annotations http://git-wip-us.apache.org/repos/asf/geode/blob/e0aa1b0c/geode-lucene/build.gradle ---------------------------------------------------------------------- diff --git a/geode-lucene/build.gradle b/geode-lucene/build.gradle index 66061aa..60dc244 100644 --- a/geode-lucene/build.gradle +++ b/geode-lucene/build.gradle @@ -34,7 +34,6 @@ dependencies { testCompile 'org.apache.lucene:lucene-codecs:' + project.'lucene.version' testCompile 'com.pholser:junit-quickcheck-core:' + project.'junit-quickcheck.version' testCompile 'org.apache.lucene:lucene-analyzers-phonetic:' + project.'lucene.version' - testCompile 'commons-codec:commons-codec:' + project.'codec.version' testCompile 'com.pholser:junit-quickcheck-generators:' + project.'junit-quickcheck.version' testCompile files(project(':geode-core').sourceSets.test.output) }
