Skip to content

Commit

Permalink
Update to the latest ECJ (Eclipse compiler).
Browse files Browse the repository at this point in the history
Exclude Eclipse compilation tests on JDK platforms < 17. Previously we excluded them on platforms < 11.

Fixes #1547
Fixes #1548

RELNOTES=n/a
PiperOrigin-RevId: 541954853
  • Loading branch information
eamonnmcmanus authored and Google Java Core Libraries committed Jun 20, 2023
1 parent 242ef10 commit e3a5d44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,14 @@
<profile>
<id>test-with-ecj</id>
<activation>
<jdk>[11,)</jdk>
<jdk>[17,)</jdk>
</activation>
<dependencies>
<!-- test dependencies -->
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>ecj</artifactId>
<version>3.33.0</version>
<version>3.34.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -155,7 +155,7 @@
<profile>
<id>test-without-ecj</id>
<activation>
<jdk>(,11)</jdk>
<jdk>(,17)</jdk>
</activation>
<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions value/src/it/functional/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>ecj</artifactId>
<version>3.32.0</version>
<version>3.34.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -258,7 +258,7 @@
<profile>
<id>test-without-ecj</id>
<activation>
<jdk>(,11)</jdk>
<jdk>(,17)</jdk>
</activation>
<build>
<plugins>
Expand Down

0 comments on commit e3a5d44

Please sign in to comment.