Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayaprakash Arthanareeswaran2013-05-15 05:20:51 +0000
committerJayaprakash Arthanareeswaran2013-05-16 10:59:25 +0000
commit654143a38aec753fd98b7be6f2d8a5edee7245f1 (patch)
treecbdb2b1ed31cafc8a0e5e8804320434faccb762d /org.eclipse.jdt.core
parent7541c5e7cde55ba638e130279383f018fee5f9ec (diff)
downloadeclipse.jdt.core-654143a38aec753fd98b7be6f2d8a5edee7245f1.tar.gz
eclipse.jdt.core-654143a38aec753fd98b7be6f2d8a5edee7245f1.tar.xz
eclipse.jdt.core-654143a38aec753fd98b7be6f2d8a5edee7245f1.zip
Fix for 407852 - ECJ source download is not correct
Diffstat (limited to 'org.eclipse.jdt.core')
-rw-r--r--org.eclipse.jdt.core/forceQualifierUpdate.txt1
-rw-r--r--org.eclipse.jdt.core/pom.xml42
2 files changed, 43 insertions, 0 deletions
diff --git a/org.eclipse.jdt.core/forceQualifierUpdate.txt b/org.eclipse.jdt.core/forceQualifierUpdate.txt
index 722c74f0de..7724782aee 100644
--- a/org.eclipse.jdt.core/forceQualifierUpdate.txt
+++ b/org.eclipse.jdt.core/forceQualifierUpdate.txt
@@ -1,3 +1,4 @@
# To force a version qualifier update add the bug here
Bug 403352 - Update all parent versions to match our build stream
Bug 407853 - ECJ download misses legal file (about.html)
+Bug 407852 - ECJ source download is not correct
diff --git a/org.eclipse.jdt.core/pom.xml b/org.eclipse.jdt.core/pom.xml
index 8007e7ae86..0a873c9a5d 100644
--- a/org.eclipse.jdt.core/pom.xml
+++ b/org.eclipse.jdt.core/pom.xml
@@ -51,6 +51,48 @@
</configuration>
</execution>
<execution>
+ <id>batch-compiler-src</id>
+ <phase>package</phase>
+ <goals>
+ <goal>custom-bundle</goal>
+ </goals>
+ <configuration>
+ <archive>
+ <addMavenDescriptor>false</addMavenDescriptor>
+ </archive>
+ <bundleLocation>${project.basedir}/scripts/source</bundleLocation>
+ <classifier>batch-compiler-src</classifier>
+ <fileSets>
+ <fileSet>
+ <directory>${project.basedir}/batch</directory>
+ </fileSet>
+ <fileSet>
+ <directory>${project.basedir}/compiler</directory>
+ </fileSet>
+ <fileSet>
+ <directory>${project.basedir}/antadapter</directory>
+ <excludes>
+ <exclude>org/eclipse/jdt/core/CheckDebugAttributes.java</exclude>
+ <exclude>org/eclipse/jdt/core/BuildJarIndex.java</exclude>
+ </excludes>
+ </fileSet>
+ <fileSet>
+ <directory>${project.basedir}/../org.eclipse.jdt.compiler.tool/src</directory>
+ </fileSet>
+ <fileSet>
+ <directory>${project.basedir}/../org.eclipse.jdt.compiler.apt/src</directory>
+ </fileSet>
+ <fileSet>
+ <directory>${project.basedir}/scripts</directory>
+ <includes>
+ <include>about.html</include>
+ <include>build.xml</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+ </configuration>
+ </execution>
+ <execution>
<id>batch-compiler</id>
<phase>package</phase>
<goals>

Back to the top