Repository: nifi Updated Branches: refs/heads/develop 133649b4b -> c0144f23a
NIFI-780 Adding dependency management to solr bundle pom to override httpclient version Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/c0144f23 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/c0144f23 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/c0144f23 Branch: refs/heads/develop Commit: c0144f23a34f975febbfccc361f80ccfaea840cd Parents: 133649b Author: Bryan Bende <[email protected]> Authored: Wed Jul 22 15:04:26 2015 -0400 Committer: Bryan Bende <[email protected]> Committed: Wed Jul 22 15:04:26 2015 -0400 ---------------------------------------------------------------------- nifi/nifi-nar-bundles/nifi-solr-bundle/pom.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/c0144f23/nifi/nifi-nar-bundles/nifi-solr-bundle/pom.xml ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-solr-bundle/pom.xml b/nifi/nifi-nar-bundles/nifi-solr-bundle/pom.xml index 4aee515..c7395df 100644 --- a/nifi/nifi-nar-bundles/nifi-solr-bundle/pom.xml +++ b/nifi/nifi-nar-bundles/nifi-solr-bundle/pom.xml @@ -36,4 +36,15 @@ <module>nifi-solr-nar</module> </modules> + <dependencyManagement> + <dependencies> + <!-- overriding these for solrj which needs 4.3.x --> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.3.1</version> + </dependency> + </dependencies> + </dependencyManagement> + </project>
