From 359b45191fc0eb75803e51e74a8f812e4eb1f7bb Mon Sep 17 00:00:00 2001 From: Sven Keidel Date: Wed, 6 May 2026 10:43:55 +0200 Subject: [PATCH 1/2] Fix Eclipse JDT compiler library version Updated the version of the Eclipse JDT compiler library to a more specific version. --- DEVELOPING_OPAL/plugins/sbt-java-fixture-compiler/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPING_OPAL/plugins/sbt-java-fixture-compiler/build.sbt b/DEVELOPING_OPAL/plugins/sbt-java-fixture-compiler/build.sbt index 827a1d7827..d656f2f5b9 100644 --- a/DEVELOPING_OPAL/plugins/sbt-java-fixture-compiler/build.sbt +++ b/DEVELOPING_OPAL/plugins/sbt-java-fixture-compiler/build.sbt @@ -32,4 +32,4 @@ ThisBuild / scalacOptions ++= Seq( ) // The version of Eclipse JDT compiler library needs to stay fixed for use within OPAL! -libraryDependencies ++= Seq("org.eclipse.jdt" % "ecj" % "3.28.0.v20211021-2009") +libraryDependencies ++= Seq("org.eclipse.jdt" % "ecj" % "3.28.0") From a43b9de23adf1bfc7aee122262fdbcbee6c8503a Mon Sep 17 00:00:00 2001 From: Sven Keidel Date: Wed, 6 May 2026 10:56:12 +0200 Subject: [PATCH 2/2] Update ecj library version in libraries.sbt Updated the version of the ecj library to 3.28.0. --- project/libraries.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/libraries.sbt b/project/libraries.sbt index 79dda52e4c..5bdce7cb96 100644 --- a/project/libraries.sbt +++ b/project/libraries.sbt @@ -1,6 +1,6 @@ // Required to compile the Java projects that are used as test fixtures. // THE VERSION OF THIS LIBRARY MUST NOT BE UPDATED - WE RELY ON THE JAVA CLASS FILE'S INTERNALS! -libraryDependencies += "org.eclipse.jdt" % "ecj" % "3.28.0.v20211021-2009" // <= DO *NOT* CHANGE! +libraryDependencies += "org.eclipse.jdt" % "ecj" % "3.28.0" // <= DO *NOT* CHANGE! // Required to compile the website libraryDependencies += "org.playframework.twirl" %% "twirl-api" % "2.0.9"