ACCUMULO-2694 fix dependency in test module for master branch. the test module code for replication made use of commons-lang without declaring the dependency, relying on a transitive inclusion from commons-configuration.
since the test for balancing in the face of an offline table added commons-lang at test scope, the transitive inclusion was lost and compilation fails. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/f34f1d89 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/f34f1d89 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/f34f1d89 Branch: refs/heads/master Commit: f34f1d8925ef3dc22691f5b4878ebd1f15468b16 Parents: 7b385fe Author: Sean Busbey <[email protected]> Authored: Sun Aug 3 01:26:07 2014 -0500 Committer: Sean Busbey <[email protected]> Committed: Sun Aug 3 01:26:07 2014 -0500 ---------------------------------------------------------------------- test/pom.xml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/f34f1d89/test/pom.xml ---------------------------------------------------------------------- diff --git a/test/pom.xml b/test/pom.xml index 450e385..382381c 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -54,6 +54,10 @@ <artifactId>commons-io</artifactId> </dependency> <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + </dependency> + <dependency> <groupId>jline</groupId> <artifactId>jline</artifactId> </dependency> @@ -141,11 +145,6 @@ <scope>test</scope> </dependency> <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - <scope>test</scope> - </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope>
