Cedric, Is there an easy way to ignore a type of error in the Ant Build Sesnor? For example, you seem to check three things Compilation, JUnit, and Checkstyle but I want to ignore Checkstyle errors. My reason for that is that we don't fail builds on checkstyle errors, but we do fail builds on the other two.
In addition, if we wanted to add checks to the build sensor, say an automated code inspector we would have to hack the BuildSensorAntListener class. In the future it would be cool if it was a little more configurable. It seems like the Ant Build Sensor consists of a collection of ant task "sensors". In fact, when I write the checkstyle sensor we would have sensors for Junit and Checkstyle, which makes me think that we don't need build entry for every Junit and/or Checkstyle Failure. Instead the Snapshot UnitTest, Checkstyle (we need a better more general name for Checkstyle), and Build data could be connected by timestamp or something like that. thanks, aaron
