Details
Description
In build.xml,
<target name="examples" depends="jar, compile-examples" description="Make the Hadoop examples jar."> ... <target name="tools-jar" depends="jar, compile-tools" description="Make the Hadoop tools jar."> <jar jarfile="${build.dir}/${tools.final.name}.jar" basedir="${build.tools}"> <manifest> <attribute name="Main-Class" value="org/apache/hadoop/examples/ExampleDriver"/> </manifest> </jar> </target>
- ExampleDriver should not be a Main-Class of tools
- Should we rename the target name from "tools-jar" to "tools", so that the name would be consistent with the "examples" target?