From 49fca0d37dbe9c05488e3d5eb959afc47722180c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= <akurtakov@gmail.com> Date: Fri, 10 Nov 2023 16:25:01 +0200 Subject: [PATCH] Make it possible to build Tycho with Java 21 Newer asm has been needed. Fixes https://github.com/eclipse-tycho/tycho/issues/2950 --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index f20e49f0cc..ec3cddb7ef 100644 --- a/pom.xml +++ b/pom.xml @@ -341,6 +341,13 @@ <configuration> <extractors>class</extractors> </configuration> + <dependencies> + <dependency> + <groupId>org.ow2.asm</groupId> + <artifactId>asm</artifactId> + <version>9.6</version> + </dependency> + </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>