
In CruiseControl's ant task, you can pass a property as a subelement like so:
<schedule>
<ant target="target_name" ... >
<property name="build.name" value="build123"/>
</ant>
</schedule>
You can also try using the 'propertyfile' attribute to pass an entire property file (useful if you change those values externally).
Hope this helps