Skip to content

Commit

Permalink
Really fix jdtCompilerAdapter.jar generation for pde/ant support (#181)
Browse files Browse the repository at this point in the history
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
#181
  • Loading branch information
iloveeclipse committed Dec 7, 2022
1 parent 9accdd4 commit 1632584
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions org.eclipse.jdt.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
<replace token="bundle_version" value="${unqualifiedVersion}" dir="${project.build.directory}/classes">
<include name="org/eclipse/jdt/internal/compiler/batch/messages.properties"/>
</replace>
<copy todir="${project.build.directory}/jdtCompilerAdapter.jar-classes">
<fileset dir="${project.build.directory}/../../org.eclipse.jdt.core.compiler.batch/target/classes">
<include name="org/eclipse/jdt/core/*.class"/>
<include name="org/eclipse/jdt/internal/antadapter/**"/>
</fileset>
</copy>
</target>
</configuration>
<goals>
Expand Down

0 comments on commit 1632584

Please sign in to comment.