Merge branch 'feature/zookeeper-config' of https://github.com/IMS94/oodt into development
Project: http://git-wip-us.apache.org/repos/asf/oodt/repo Commit: http://git-wip-us.apache.org/repos/asf/oodt/commit/54089cae Tree: http://git-wip-us.apache.org/repos/asf/oodt/tree/54089cae Diff: http://git-wip-us.apache.org/repos/asf/oodt/diff/54089cae Branch: refs/heads/master Commit: 54089cae98a30b7953d848117bd3d1994185f5b1 Parents: ce89ad1 07aea0d Author: Imesha Sudasingha <[email protected]> Authored: Wed Oct 11 15:30:34 2017 +0530 Committer: Imesha Sudasingha <[email protected]> Committed: Thu Oct 12 08:07:14 2017 +0530 ---------------------------------------------------------------------- config/pom.xml | 2 +- .../org/apache/oodt/config/ConfigEventType.java | 50 +++++++++++++ .../oodt/config/ConfigurationListener.java | 31 ++++++++ .../oodt/config/ConfigurationManager.java | 23 ++++++ .../java/org/apache/oodt/config/Constants.java | 3 + .../DistributedConfigurationManager.java | 79 +++++++++++++++++--- .../DistributedConfigurationPublisher.java | 43 ++++++++++- .../oodt/config/distributed/ZNodePaths.java | 27 +++++++ .../oodt/config/distributed/cli/CLIAction.java | 48 +++++++++++- .../config/distributed/cli/ConfigPublisher.java | 8 ++ .../config/distributed/utils/ConfigUtils.java | 5 ++ .../config/distributed/utils/CuratorUtils.java | 19 +++-- .../AbstractDistributedConfigurationTest.java | 7 ++ config/src/main/resources/cmd-line-options.xml | 31 ++++++++ .../DistributedConfigurationManagerTest.java | 69 ++++++++++++++++- core/pom.xml | 2 +- .../cas/filemgr/system/XmlRpcFileManager.java | 18 ++++- pge/pom.xml | 2 +- 18 files changed, 435 insertions(+), 32 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oodt/blob/54089cae/core/pom.xml ---------------------------------------------------------------------- diff --cc core/pom.xml index 3489a56,f6e0fc3..779c0c1 --- a/core/pom.xml +++ b/core/pom.xml @@@ -254,13 -243,8 +254,13 @@@ the License <version>8.7</version> </dependency> <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-compress</artifactId> + <version>1.12</version> + </dependency> + <dependency> <groupId>org.apache.curator</groupId> - <artifactId>curator-framework</artifactId> + <artifactId>curator-recipes</artifactId> <version>3.3.0</version> </dependency> <dependency>
