Hi, I started to write my build listener. On buildStarted I wanted to write some informations about project, especially name of project. So I do:
public void buildStarted(BuildEvent event) {
String projectName = event.getProject().getName();
...
but now the projectName is null. Later (in any taskStarted) it is OK. Is
it correct?
Vojta
