Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2013-10-23 20:21:16 +0000
committerDani Megert2013-10-23 20:21:16 +0000
commit38ac750d2026afec107f7a81a66fa50e6178a757 (patch)
treef8320fd1f93b264a91f5022e0292d3bc6cd128e8
parenta9d5fe1c3642954242d02b6573bff044cd3f8760 (diff)
downloadeclipse.pde.ui-38ac750d2026afec107f7a81a66fa50e6178a757.tar.gz
eclipse.pde.ui-38ac750d2026afec107f7a81a66fa50e6178a757.tar.xz
eclipse.pde.ui-38ac750d2026afec107f7a81a66fa50e6178a757.zip
Fixed bug 420089: Dirty working tree: about.mappings (PDE.UI) I20131023-2000
Signed-off-by: Thanh Ha <thanh.ha@eclipse.org>
-rw-r--r--ui/org.eclipse.pde/META-INF/MANIFEST.MF4
-rw-r--r--ui/org.eclipse.pde/about.mappings2
-rw-r--r--ui/org.eclipse.pde/pom.xml28
3 files changed, 4 insertions, 30 deletions
diff --git a/ui/org.eclipse.pde/META-INF/MANIFEST.MF b/ui/org.eclipse.pde/META-INF/MANIFEST.MF
index 4c5fb23284..7b406607a2 100644
--- a/ui/org.eclipse.pde/META-INF/MANIFEST.MF
+++ b/ui/org.eclipse.pde/META-INF/MANIFEST.MF
@@ -1,8 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
-Bundle-SymbolicName: org.eclipse.pde; singleton:=true
-Bundle-Version: 3.8.100.qualifier
+Bundle-SymbolicName: org.eclipse.pde;singleton:=true
+Bundle-Version: 3.8.200.qualifier
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/ui/org.eclipse.pde/about.mappings b/ui/org.eclipse.pde/about.mappings
index 720ca870fa..7eb21b99b2 100644
--- a/ui/org.eclipse.pde/about.mappings
+++ b/ui/org.eclipse.pde/about.mappings
@@ -3,4 +3,4 @@
# java.io.Properties file (ISO 8859-1 with "\" escapes)
# This file does not need to be translated.
-0=@build@ \ No newline at end of file
+0=${buildId}
diff --git a/ui/org.eclipse.pde/pom.xml b/ui/org.eclipse.pde/pom.xml
index 2fb213c7be..4f515b72bd 100644
--- a/ui/org.eclipse.pde/pom.xml
+++ b/ui/org.eclipse.pde/pom.xml
@@ -19,7 +19,7 @@
</parent>
<groupId>org.eclipse.pde</groupId>
<artifactId>org.eclipse.pde</artifactId>
- <version>3.8.100-SNAPSHOT</version>
+ <version>3.8.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
@@ -34,30 +34,4 @@
</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