Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayaprakash Arthanareeswaran2013-11-26 05:44:08 +0000
committerJayaprakash Arthanareeswaran2014-01-28 02:43:21 +0000
commit3b80ff647411b20503d367972b9a6ddd83c803ed (patch)
tree7bb7dff0f14d8d7b173b101f2b810a50ec0f32c1 /org.eclipse.jdt.core/pom.xml
parent8fb5c0832ac502a7e1f2ffd4f5041e3e2cd28240 (diff)
downloadeclipse.jdt.core-3b80ff647411b20503d367972b9a6ddd83c803ed.tar.gz
eclipse.jdt.core-3b80ff647411b20503d367972b9a6ddd83c803ed.tar.xz
eclipse.jdt.core-3b80ff647411b20503d367972b9a6ddd83c803ed.zip
Bug 417072 - Reverting part of the previous commit that changed the
messages.properties and affect the tests Change-Id: I646fbfd9d1d305448f3fcbcd32b66e305837970c
Diffstat (limited to 'org.eclipse.jdt.core/pom.xml')
-rw-r--r--org.eclipse.jdt.core/pom.xml37
1 files changed, 21 insertions, 16 deletions
diff --git a/org.eclipse.jdt.core/pom.xml b/org.eclipse.jdt.core/pom.xml
index 27a85c0a76..8fd4728846 100644
--- a/org.eclipse.jdt.core/pom.xml
+++ b/org.eclipse.jdt.core/pom.xml
@@ -27,6 +27,27 @@
<build>
<plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>prepare-package</phase>
+ <configuration>
+ <tasks>
+ <replace token="bundle_qualifier," value="${buildQualifier}," dir="${project.build.directory}/classes">
+ <include name="org/eclipse/jdt/internal/compiler/batch/messages.properties"/>
+ </replace>
+ <replace token="bundle_version" value="${unqualifiedVersion}" dir="${project.build.directory}/classes">
+ <include name="org/eclipse/jdt/internal/compiler/batch/messages.properties" />
+ </replace>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
@@ -47,22 +68,6 @@
</resources>
</configuration>
</execution>
- <execution>
- <id>copy-batch</id>
- <phase>package</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.directory}/classes</outputDirectory>
- <resources>
- <resource>
- <directory>${project.basedir}/batch</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </configuration>
- </execution>
</executions>
</plugin>
<plugin>

Back to the top