Updated Branches: refs/heads/trunk d3c85b1d7 -> fb2ec005a
FLUME-1545. File channel missing explicit dependency on commons-lang. (Mike Percy via Hari Shreedharan) Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/fb2ec005 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/fb2ec005 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/fb2ec005 Branch: refs/heads/trunk Commit: fb2ec005a779591338e2c1cb0c949a0a911e0e80 Parents: d3c85b1 Author: Hari Shreedharan <[email protected]> Authored: Fri Sep 7 19:47:16 2012 -0700 Committer: Hari Shreedharan <[email protected]> Committed: Fri Sep 7 19:47:16 2012 -0700 ---------------------------------------------------------------------- flume-ng-channels/flume-file-channel/pom.xml | 5 +++++ pom.xml | 6 ++++++ 2 files changed, 11 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/fb2ec005/flume-ng-channels/flume-file-channel/pom.xml ---------------------------------------------------------------------- diff --git a/flume-ng-channels/flume-file-channel/pom.xml b/flume-ng-channels/flume-file-channel/pom.xml index a27e7ac..639195e 100644 --- a/flume-ng-channels/flume-file-channel/pom.xml +++ b/flume-ng-channels/flume-file-channel/pom.xml @@ -133,6 +133,11 @@ </dependency> <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + </dependency> + + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> http://git-wip-us.apache.org/repos/asf/flume/blob/fb2ec005/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 489e633..f3ac6d8 100644 --- a/pom.xml +++ b/pom.xml @@ -610,6 +610,12 @@ limitations under the License. </dependency> <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.5</version> + </dependency> + + <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>10.0.1</version>
