git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113761 13f79535-47bb-0310-9956-ffa450edef68
33 lines
748 B
XML
33 lines
748 B
XML
<?xml version="1.0"?>
|
|
|
|
<project
|
|
xmlns:j="jelly:core"
|
|
xmlns:m="jelly:maven">
|
|
|
|
<preGoal name="touchstone-goal-C">
|
|
<echo>preGoal for touchstone-goal-C is running ...</echo>
|
|
|
|
<m:set-plugin-property
|
|
plugin="touchstone-partner"
|
|
var="touchstone_partner_preGoal_C"
|
|
value="true"/>
|
|
|
|
<echo>inside touchstone-partner : ${plugin.id}</echo>
|
|
</preGoal>
|
|
|
|
<preGoal name="touchstone-goal-D">
|
|
<echo>preGoal for touchstone-goal-D is running ...</echo>
|
|
<attainGoal name="touchstone-partner-goal-A"/>
|
|
</preGoal>
|
|
|
|
<goal name="touchstone-partner-goal-A">
|
|
|
|
<m:set-plugin-property
|
|
plugin="touchstone-partner"
|
|
var="touchstone_partner_preGoal_D"
|
|
value="true"/>
|
|
|
|
</goal>
|
|
|
|
</project>
|