Updated Branches: refs/heads/flume-1.3.0 88a06409f -> 975231474
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/97523147 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/97523147 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/97523147 Branch: refs/heads/flume-1.3.0 Commit: 975231474533e37bce3efc67faed90366a4b7269 Parents: 88a0640 Author: Hari Shreedharan <[email protected]> Authored: Fri Sep 7 19:47:16 2012 -0700 Committer: Hari Shreedharan <[email protected]> Committed: Fri Sep 7 19:48:26 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/97523147/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 8e5f871..3c031be 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/97523147/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 1c267e9..371c43a 100644 --- a/pom.xml +++ b/pom.xml @@ -603,6 +603,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>
