Learned some things today to get something running with Clover. First off I learned that Clover uses it’s own embedded version of ant unless you specify otherwise. IntelliJ does a similiar thing, so you just have to tell it where yours is so it can use your version of ant.
<schedule interval=”60”> <ant anthome=”C:\apache-ant-1.6.5” buildfile=”cc-build.xml” target=”build”/> </schedule>
This took me a little while to catch until I noticed the console was reporting running 1.6.2 and I only had 1.6.5 on the machine.
I had all sorts of problems getting the Clover html reports to run until I added fork=”yes” to the
1
|
|