I tried to use the new Tycho feature for renaming the produced artifact. The zip files are renamed correctly under the target/products directory, but when Maven installs them to C:\.m2, they will have the original name.
<configuration>
<products>
<product>
<id>my.product.id</id>
<archiveFileName>xyz</archiveFileName>
</product>
</products>
</configuration>
Result in target/products directory: xyz-win32.win32.x86.zip
Result in C:\.m2...\: my.product.id-win32.win32.x86.zip
Is there another place to configure this?