bindtarget task

Description

This targets allow to change the mapping between targets and extensionPoint.
Usually it's usefull when you want to attach some extra targets to the default lifecycle, or to other plugin hooks.

Arguments

Parameter name Description Mandatory
target the target that we're going to attach / detach true
extensionOf specify extensionPoint that will be used by the mapping. If null / empty, the target will just be unbound.
buildConfigurations specify one a many build configurations separated by a comma

Example

Bind test-jar:jar target to package
  <ea:bindtarget target="test-jar:jar" extensionOf="package"/>
Unbind mytarget target from current extensionPoint mapping
  <ea:bindtarget target="test-jar:jar"/>