Skip to content

Commit

Permalink
Fix jdtCompilerAdapter.jar generation for pde/ant support (eclipse-jd…
Browse files Browse the repository at this point in the history
…t#181)

Add moved classes located now in org.eclipse.jdt.core.compiler.batch to
the jdtCompilerAdapter.jar used by pde.build & Ant (see
org.eclipse.ant.internal.ui.datatransfer.BuildFileCreator).

See
eclipse-pde/eclipse.pde#419
eclipse-jdt#181
  • Loading branch information
iloveeclipse committed Dec 7, 2022
1 parent fe36874 commit aac162e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion org.eclipse.jdt.core/scripts/export-ecj.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<replace file="${target.folder}/org/eclipse/jdt/internal/compiler/batch/messages.properties" token="bundle_qualifier" value="${bundleVersionQualifer}"/>
<echo message="Extract .class file and properties for the batch compiler" />
<copy todir="${ecj-temp-folder}">
<fileset dir="${target.folder}">
<fileset dir="${basedir}/../org.eclipse.jdt.core.compiler.batch/target/classes">
<include name="org/eclipse/jdt/internal/compiler/**"/>
<include name="org/eclipse/jdt/core/compiler/**"/>
<exclude name="**/package.htm*"/>
Expand Down Expand Up @@ -113,6 +113,9 @@
<exclude name="org/eclipse/jdt/core/CheckDebugAttributes*.*"/>
<exclude name="org/eclipse/jdt/core/BuildJarIndex*.*"/>
</fileset>
<fileset dir="${basedir}/../org.eclipse.jdt.core.compiler.batch/target/classes">
<include name="org/eclipse/jdt/internal/antadapter/*.*"/>
</fileset>
</copy>
</target>

Expand Down

0 comments on commit aac162e

Please sign in to comment.