flume uber jar is missing files from flume-file-channel project
---------------------------------------------------------------
Key: FLUME-830
URL: https://issues.apache.org/jira/browse/FLUME-830
Project: Flume
Issue Type: Bug
Components: Build
Affects Versions: NG alpha 1
Reporter: Will McQueen
Priority: Critical
After following the getting Flume NG Getting Started guide, you should see this
file:
flume-ng-dist/target/flume-ng-dist-0.9.5-SNAPSHOT-jar-with-dependencies.jar
The jar doesn't contain any of the files from the flume-file-channel project
(org.apache.flume.channel.file.*) because the pom file's groupId is incorrect
(see below).
flume-ng-channels/flume-file-channel/pom.xml has:
<groupId>org.apache.flume</groupId>
<artifactId>flume-file-channel</artifactId>
<version>0.9.5-SNAPSHOT</version>
<name>Flume NG file-based channel</name>
...but should be:
<groupId>org.apache.flume.flume-ng-channels</groupId>
<artifactId>flume-file-channel</artifactId>
<version>0.9.5-SNAPSHOT</version>
<name>Flume NG file-based channel</name>
(only a change to the <groupId> element to append ".flume-ng-channels")
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira