Community
Participate
Working Groups
<artifactId>org.eclipse.core.tools</artifactId>
<version>1.5.100-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<format>'v${maven.build.timestamp}'</format>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>update-branding-plugins</id>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<tasks>
<replace file="about.mappings"
token="@build@" value="${buildId}" />
</tasks>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</profile>
</profiles>
</project>