Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.core.tools.resources/pom.xml')
-rw-r--r--bundles/org.eclipse.core.tools.resources/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/bundles/org.eclipse.core.tools.resources/pom.xml b/bundles/org.eclipse.core.tools.resources/pom.xml
index 8998c7643..c2840a6b3 100644
--- a/bundles/org.eclipse.core.tools.resources/pom.xml
+++ b/bundles/org.eclipse.core.tools.resources/pom.xml
@@ -43,7 +43,41 @@
</dependency-resolution>
</configuration>
</plugin>
+ <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>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>process-resources</phase>
+ <configuration>
+ <tasks>
+ <replace file="about.mappings"
+ token="@build@" value="${buildId}" />
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>

Back to the top