1 | public void targetFinished(BuildEvent event) {↵ | | 1 | public void targetFinished(BuildEvent event) {↵
|
2 | }↵ | | 2 | ↵
|
|
| | | 3 | //System.out.println("targetFinished " + event.getTarget().getName());↵
|
| | | 4 | }↵
|
|
3 | /**↵ | | 5 | /**↵
|
4 | * Fired when a task is started.↵ | | 6 | * Fired when a task is started.↵
|
5 | * @param event ignored.↵ | | 7 | ↵
|
| | | 8 | *↵
|
6 | * @see BuildEvent#getTask()↵ | | 9 | * @see BuildEvent#getTask()↵
|
7 | */↵ | | 10 | */↵
|
8 | public void taskStarted(BuildEvent event) {↵ | | 11 | public void taskStarted(BuildEvent event) {↵
|
| | | 12 | //System.out.println("taskStarted " + event.getTask().getTaskName());↵
|
9 | }↵ | | 13 | }↵
|
|
10 | /**↵ | | 14 | /**↵
|
11 | * Fired when a task has finished. This event will still↵ | | 15 | * Fired when a task has finished. This event will still↵
|
12 | * be throw if an error occurred during the build.↵ | | 16 | * be throw if an error occurred during the build.↵
|
13 | * @param event ignored.↵ | | 17 | ↵
|
| | | 18 | *↵
|
14 | * @see BuildEvent#getException()↵ | | 19 | * @see BuildEvent#getException()↵
|
15 | */↵ | | 20 | ↵
|
| | | 21 | */↵
|
16 | public void taskFinished(BuildEvent event) | | 22 | public void taskFinished(BuildEvent event)
|