Skip to content

Commit

Permalink
Compile to target 17
Browse files Browse the repository at this point in the history
This should avoid the strange "NoSuchFieldError: RELEASE_17" error
message in AJC.

Relates to eclipse-aspectj/aspectj#269.

Signed-off-by: Alexander Kriegisch <[email protected]>
  • Loading branch information
kriegaex committed Dec 15, 2023
1 parent b79a4ae commit 655dd1c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions org.eclipse.jdt.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,9 @@
<!-- Basic build properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!--
Eclipse JDT Core now requires Java 17 and has started using more recent source code constructs.
At least for now, compiling to target 11 ist still possible.
-->
<!-- Eclipse JDT Core now requires Java 17 -->
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.target>17</maven.compiler.target>

<!-- By default, deploy this public artifact -->
<maven.deploy.skip>false</maven.deploy.skip>
Expand Down

0 comments on commit 655dd1c

Please sign in to comment.