View | Details | Raw Unified | Return to bug 405151 | Differences between
and this patch

Collapse All | Expand All

(-)a/ui/org.eclipse.pde/about.mappings (-1 / +1 lines)
Lines 3-6 Link Here
3
# java.io.Properties file (ISO 8859-1 with "\" escapes)
3
# java.io.Properties file (ISO 8859-1 with "\" escapes)
4
# This file does not need to be translated.
4
# This file does not need to be translated.
5
5
6
0=@build@
6
0=${buildId}
(-)a/ui/org.eclipse.pde/pom.xml (-19 / +9 lines)
Lines 41-65 Link Here
41
    <profile>
41
    <profile>
42
      <id>update-branding-plugins</id>
42
      <id>update-branding-plugins</id>
43
      <build>
43
      <build>
44
        <plugins>
44
        <resources>
45
          <plugin>
45
          <resource>
46
            <artifactId>maven-antrun-plugin</artifactId>
46
            <directory>.</directory>
47
            <executions>
47
            <includes>
48
              <execution>
48
              <include>about.mappings</include>
49
                <phase>process-resources</phase>
49
            </includes>
50
                <configuration>
50
            <filtering>true</filtering>
51
                  <tasks>
51
          </resource>
52
                    <replace file="about.mappings" 
52
        </resources>
53
                             token="@build@" value="${buildId}" />
54
                  </tasks>
55
                </configuration>
56
                <goals>
57
                  <goal>run</goal>
58
                </goals>
59
              </execution>
60
            </executions>
61
          </plugin>
62
        </plugins>
63
      </build>
53
      </build>
64
    </profile>
54
    </profile>
65
  </profiles>
55
  </profiles>

Return to bug 405151