diff options
| author | Thanh Ha | 2012-12-10 19:29:23 +0000 |
|---|---|---|
| committer | Paul Webster | 2012-12-10 19:29:23 +0000 |
| commit | 3f10a2f7b8bff85285c0ed99dc8d05dbcb24e3ff (patch) | |
| tree | 167a0f2f10a09ef2c31483d43683ecb317121ece | |
| parent | 68d64830f5798cba21a7f0f14abea3a72df91a59 (diff) | |
| download | eclipse.platform.runtime-3f10a2f7b8bff85285c0ed99dc8d05dbcb24e3ff.tar.gz eclipse.platform.runtime-3f10a2f7b8bff85285c0ed99dc8d05dbcb24e3ff.tar.xz eclipse.platform.runtime-3f10a2f7b8bff85285c0ed99dc8d05dbcb24e3ff.zip | |
Bug 396103 - Merge in CBI patches from 4.2.2 into 4.3 (pom changes) for eclipse.platform.runtimeI20121218-1600I20121218-0800I20121214-0730I20121213-1200I20121212-2000I20121212-0800I20121211-2000I20121211-0800I20121210-2000
| -rw-r--r-- | bundles/org.eclipse.core.tools/pom.xml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/bundles/org.eclipse.core.tools/pom.xml b/bundles/org.eclipse.core.tools/pom.xml index 13bc492db..b3e29c7f7 100644 --- a/bundles/org.eclipse.core.tools/pom.xml +++ b/bundles/org.eclipse.core.tools/pom.xml @@ -23,4 +23,44 @@ <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> + <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> |
