Jar creation should be revisited
--------------------------------
Key: CHUKWA-53
URL: https://issues.apache.org/jira/browse/CHUKWA-53
Project: Hadoop Chukwa
Issue Type: Bug
Reporter: Jerome Boulon
Priority: Blocker
For example chukwa-agent-xxx.jar does not contains any .class just the java
version this is due to ${build.dir}
<fileset dir="${build.dir}">
<include name="org/apache/hadoop/chukwa/util/**/*.class"/>
</fileset>
should use ${build.classes}
<fileset dir="${build.classes}">
<include name="org/apache/hadoop/chukwa/util/**/*.class"/>
</fileset>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.