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