FLUME-2400. Dataset Sink is not built in hbase-98 profile
Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/8bfc90c0 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/8bfc90c0 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/8bfc90c0 Branch: refs/heads/trunk Commit: 8bfc90c0e4042fd2273d0de23b377fdd69f4c049 Parents: c48c26a Author: Hari Shreedharan <[email protected]> Authored: Tue Jun 10 12:01:16 2014 -0700 Committer: Hari Shreedharan <[email protected]> Committed: Tue Jun 10 13:54:33 2014 -0700 ---------------------------------------------------------------------- flume-ng-dist/pom.xml | 15 +++++++++++++++ flume-ng-sinks/pom.xml | 16 ++++++++++++++++ 2 files changed, 31 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/8bfc90c0/flume-ng-dist/pom.xml ---------------------------------------------------------------------- diff --git a/flume-ng-dist/pom.xml b/flume-ng-dist/pom.xml index 7821dc0..8c18af6 100644 --- a/flume-ng-dist/pom.xml +++ b/flume-ng-dist/pom.xml @@ -79,6 +79,21 @@ </dependency> </dependencies> </profile> + <profile> + <id>hbase-98</id> + <activation> + <property> + <name>hadoop.profile</name> + <value>hbase-98</value> + </property> + </activation> + <dependencies> + <dependency> + <groupId>org.apache.flume.flume-ng-sinks</groupId> + <artifactId>flume-dataset-sink</artifactId> + </dependency> + </dependencies> + </profile> </profiles> <dependencies> http://git-wip-us.apache.org/repos/asf/flume/blob/8bfc90c0/flume-ng-sinks/pom.xml ---------------------------------------------------------------------- diff --git a/flume-ng-sinks/pom.xml b/flume-ng-sinks/pom.xml index c919605..3381bde 100644 --- a/flume-ng-sinks/pom.xml +++ b/flume-ng-sinks/pom.xml @@ -74,6 +74,22 @@ limitations under the License. </modules> </profile> + <profile> + <id>hbase-98</id> + <activation> + <property> + <name>hadoop.profile</name> + <value>hbase-98</value> + </property> + </activation> + <!-- add the flume-dataset-sink, which is only compatible with hadoop-2 + --> + <modules> + <module>flume-dataset-sink</module> + </modules> + </profile> + + </profiles> </project>
