Tycho >> Execute 2 Ant tasks with maven plugin
<executions>
<execution>
<id>task-1</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<mkdir dir="${project.build.directory}/product-1"/>
</target>
</configuration>
</execution>
<execution>
<id>task-2</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<mkdir dir="${project.build.directory}/product-2"/>
</target>
</configuration>
</execution>
</executions>