Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis Windatt2012-12-07 18:08:57 +0000
committerCurtis Windatt2012-12-07 18:12:16 +0000
commit6357398f58bece85178c77f46e754ba575a253ed (patch)
tree1f79687920e4174bd241f7f056b20c6d4e791777
parent697fd87548d94549d3485a70f7706d745ddb5316 (diff)
downloadeclipse.pde.ui-6357398f58bece85178c77f46e754ba575a253ed.tar.gz
eclipse.pde.ui-6357398f58bece85178c77f46e754ba575a253ed.tar.xz
eclipse.pde.ui-6357398f58bece85178c77f46e754ba575a253ed.zip
-rw-r--r--ui/org.eclipse.pde/pom.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/ui/org.eclipse.pde/pom.xml b/ui/org.eclipse.pde/pom.xml
index f022eaa484..4eff9e0347 100644
--- a/ui/org.eclipse.pde/pom.xml
+++ b/ui/org.eclipse.pde/pom.xml
@@ -23,4 +23,44 @@
<artifactId>org.eclipse.pde</artifactId>
<version>3.7.0-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>
+ <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