I'm trying to configure CruiseControl to build the project on every modification of source code and every day at 3:00am. This is what I've done so far in project.xml
(and it doesn't work, daily builds are not done):
...
<schedule interval="120">
<maven2 … />
<maven2 … time="0300"/>
</schedule>
...
What am I doing wrong?
As I understand there is no possibility in CruiseControl to do this :(