Tycho >> Replace SNAPSHOT by qualifier in update site's name
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<inherited>true</inherited>
<executions>
<execution>
<phase>package</phase>
<id>archive-repository</id>
<goals>
<goal>archive-repository</goal>
</goals>
<configuration>
<finalName>${project.artifactId}_${unqualifiedVersion}.${buildQualifier}</finalName>
</configuration>
</execution>
</executions>
</plugin>