Is it possible to reference the name of a project within a target? For example, can I do something like this?
<project name="My Project">
<target name="getProjectName">
<echo message="${project.name}"/>
</target>
</project>
I made up the property name "project.name". This doesn't work but it seems
there should be some way I can use the name of the project within a target.
