moved the hard coded deps out of the parent pom. It created problems for curator-rpc
Project: http://git-wip-us.apache.org/repos/asf/curator/repo Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/db066346 Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/db066346 Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/db066346 Branch: refs/heads/CURATOR-3.0 Commit: db066346df39dd85a8fec925ba816617695f68df Parents: 20e92a5 Author: randgalt <[email protected]> Authored: Sat Jun 6 23:35:36 2015 -0500 Committer: randgalt <[email protected]> Committed: Sat Jun 6 23:35:36 2015 -0500 ---------------------------------------------------------------------- curator-client/pom.xml | 16 ++++++++++++++++ curator-framework/pom.xml | 6 ++++++ curator-recipes/pom.xml | 6 ++++++ curator-test/pom.xml | 10 ++++++++++ curator-x-discovery-server/pom.xml | 6 ++++++ curator-x-discovery/pom.xml | 6 ++++++ curator-x-rpc/pom.xml | 6 ++++++ pom.xml | 25 ------------------------- 8 files changed, 56 insertions(+), 25 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/curator/blob/db066346/curator-client/pom.xml ---------------------------------------------------------------------- diff --git a/curator-client/pom.xml b/curator-client/pom.xml index 50b950f..22ccf28 100644 --- a/curator-client/pom.xml +++ b/curator-client/pom.xml @@ -46,6 +46,16 @@ <dependencies> <dependency> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + </dependency> + + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </dependency> + + <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> @@ -61,5 +71,11 @@ <artifactId>curator-test</artifactId> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/curator/blob/db066346/curator-framework/pom.xml ---------------------------------------------------------------------- diff --git a/curator-framework/pom.xml b/curator-framework/pom.xml index 3b3e346..7d9bd03 100644 --- a/curator-framework/pom.xml +++ b/curator-framework/pom.xml @@ -55,6 +55,12 @@ <artifactId>curator-test</artifactId> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/curator/blob/db066346/curator-recipes/pom.xml ---------------------------------------------------------------------- diff --git a/curator-recipes/pom.xml b/curator-recipes/pom.xml index 8913b6f..8c257b7 100644 --- a/curator-recipes/pom.xml +++ b/curator-recipes/pom.xml @@ -61,5 +61,11 @@ <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/curator/blob/db066346/curator-test/pom.xml ---------------------------------------------------------------------- diff --git a/curator-test/pom.xml b/curator-test/pom.xml index d3301ca..59abda2 100644 --- a/curator-test/pom.xml +++ b/curator-test/pom.xml @@ -36,6 +36,11 @@ <dependencies> <dependency> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + </dependency> + + <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> </dependency> @@ -46,6 +51,11 @@ </dependency> <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </dependency> + + <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>provided</scope> http://git-wip-us.apache.org/repos/asf/curator/blob/db066346/curator-x-discovery-server/pom.xml ---------------------------------------------------------------------- diff --git a/curator-x-discovery-server/pom.xml b/curator-x-discovery-server/pom.xml index 451f46c..2728ce5 100644 --- a/curator-x-discovery-server/pom.xml +++ b/curator-x-discovery-server/pom.xml @@ -62,6 +62,12 @@ </dependency> <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <scope>test</scope> + </dependency> + + <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-server</artifactId> <scope>test</scope> http://git-wip-us.apache.org/repos/asf/curator/blob/db066346/curator-x-discovery/pom.xml ---------------------------------------------------------------------- diff --git a/curator-x-discovery/pom.xml b/curator-x-discovery/pom.xml index 8c08a10..015fea7 100644 --- a/curator-x-discovery/pom.xml +++ b/curator-x-discovery/pom.xml @@ -60,5 +60,11 @@ <artifactId>curator-test</artifactId> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/curator/blob/db066346/curator-x-rpc/pom.xml ---------------------------------------------------------------------- diff --git a/curator-x-rpc/pom.xml b/curator-x-rpc/pom.xml index 222310b..299ef9f 100644 --- a/curator-x-rpc/pom.xml +++ b/curator-x-rpc/pom.xml @@ -112,6 +112,12 @@ </exclusions> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> http://git-wip-us.apache.org/repos/asf/curator/blob/db066346/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index f3db843..f7c03dd 100644 --- a/pom.xml +++ b/pom.xml @@ -472,31 +472,6 @@ </dependencies> </dependencyManagement> - <dependencies> - <dependency> - <groupId>org.apache.zookeeper</groupId> - <artifactId>zookeeper</artifactId> - </dependency> - - <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - </dependency> - - <dependency> - <groupId>org.testng</groupId> - <artifactId>testng</artifactId> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - <scope>test</scope> - </dependency> - - </dependencies> - <reporting> <plugins> <plugin>
