From the bug report at https://bugs.eclipse.org/bugs/show_bug.cgi?id=357503 it seems that they added the ability to change the zip file name directly from Tycho 0.14.0. I use the following for my tycho-p2-director-plugin block.
<plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-p2-director-plugin</artifactId> <version>0.16.0</version> <executions> <execution> <id>materialize-products</id> <goals> <goal>materialize-products</goal> </goals> </execution> <execution> <id>archive-products</id> <goals> <goal>archive-products</goal> </goals> </execution> </executions> <configuration> <products> <product> <id>MY_PRODUCT_ID</id> <archiveFileName>MyProduct-${project.version}</archiveFileName> </product> </products> </configuration> </plugin>
The key bit is at the end of the <configuration> section, where you can specify the zip file prefix using the <archiveFileName> . The file suffix is ββstill -<os>.<ws>.<arch>.<archiveExtension> , as you might expect.
source share