Skip to content

Commit

Permalink
[#2147] update to asm 9.5
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Dietrich <[email protected]>
  • Loading branch information
cdietrich committed Apr 6, 2023
1 parent f284f01 commit 7db573c
Show file tree
Hide file tree
Showing 44 changed files with 47 additions and 46 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.xtend.core.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Require-Bundle: org.eclipse.xtend.core,
org.eclipse.emf.ecore,
org.eclipse.xtext.builder,
org.eclipse.xtend.lib,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)",
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)",
org.eclipse.jdt.core;bundle-version="3.29.0",
org.eclipse.xtext.builder.standalone,
org.eclipse.xtext.java
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtend.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.24.100",
org.eclipse.xtend.lib;bundle-version="2.31.0",
org.eclipse.xtext.smap,
org.apache.ant;bundle-version="1.7.1";resolution:=optional;x-installation:=greedy,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.xtext.xbase.testing;resolution:=optional
Bundle-ActivationPolicy: lazy
Import-Package: org.apache.log4j;version="1.2.24"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Require-Bundle: org.eclipse.xtend.lib,
org.eclipse.xtext.xbase.testing,
org.eclipse.jdt.core,
org.eclipse.emf.codegen;bundle-version="2.22.0",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.equinox.common
Export-Package: extract,
i18n,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<include name="org.eclipse.xtend.lib.macro-*.jar" />
<include name="org.eclipse.xtend.core-*.jar" />
<include name="org.objectweb.asm*.jar" />
<include name="asm-*.jar" />
<exclude name="*.source*.jar" />
<exclude name="*.gwt*.jar" />
</fileset>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Require-Bundle: org.eclipse.xtext.util,
org.eclipse.xtext.ui.testing,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.eclipse.xtext.ui.codetemplates.ui,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.compare,
org.eclipse.xtext.xbase.testing,
org.eclipse.ui.workbench;resolution:=optional,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Bundle-Version: 0.0.1
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.xtext.common.types.xtext.ui
Require-Bundle: org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
Require-Bundle: org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.xtext.common.types.eclipse.tests,
org.eclipse.xtext.xbase.lib,
org.eclipse.xtext.common.types.eclipse.tests.ui,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.common.types/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Require-Bundle:
org.eclipse.emf.common;bundle-version="2.24.0",
com.google.inject;bundle-version="5.0.1",
org.eclipse.xtext,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)",
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)",
org.eclipse.xtend.lib,
com.google.guava;bundle-version="[30.1.0,31.0.0)",
io.github.classgraph;bundle-version="4.8.149"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private static boolean isAsm8Available() {
logger.warn("ASM library is too old. Falling back to java.lang.reflect API.");
}
logger.warn("Please note that no information about compile time constants is available.");
logger.warn("It's recommended to use org.objectweb.asm 9.4.0 or better (Maven group id: org.ow2.asm).");
logger.warn("It's recommended to use org.objectweb.asm 9.5.0 or better (Maven group id: org.ow2.asm).");
logger.warn("--------------------------------------------------------------------------");
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.dev-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.4</version>
<version>9.5</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ public Set<Binding> getGuiceBindingsUi(Grammar grammar) {

@Override
public String[] getRequiredBundlesRt(Grammar grammar) {
return new String[] { "org.eclipse.xtext.common.types","org.objectweb.asm;bundle-version=\"[9.4.0,9.5.0)\";resolution:=optional" };
return new String[] { "org.eclipse.xtext.common.types","org.objectweb.asm;bundle-version=\"[9.5.0,9.6.0)\";resolution:=optional" };
}

@Override
public String[] getRequiredBundlesTests(Grammar grammar) {
return new String[] { "org.objectweb.asm;bundle-version=\"[9.4.0,9.5.0)\";resolution:=optional" };
return new String[] { "org.objectweb.asm;bundle-version=\"[9.5.0,9.6.0)\";resolution:=optional" };
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions org.eclipse.xtext.p2repository/category.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
<bundle id="org.aopalliance.source" version="1.0.0.qualifier"/>
<bundle id="org.junit" version="4.13.2.qualifier"/>
<bundle id="org.junit.source" version="4.13.2.qualifier"/>
<bundle id="org.objectweb.asm" version="9.4.0.qualifier"/>
<bundle id="org.objectweb.asm.source" version="9.4.0.qualifier"/>
<bundle id="org.objectweb.asm" version="9.5.0.qualifier"/>
<bundle id="org.objectweb.asm.source" version="9.5.0.qualifier"/>
<bundle id="io.github.classgraph" version="4.8.149.qualifier"/>
<bundle id="io.github.classgraph.source" version="4.8.149.qualifier"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Require-Bundle: org.eclipse.xtext.purexbase,
org.eclipse.ui.workbench;bundle-version="3.125.0";resolution:=optional;x-installation:=greedy,
org.eclipse.xtext.builder,
org.eclipse.jdt.core;bundle-version="3.29.0",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.eclipse.xtext.testing,
org.eclipse.xtext.xbase.testing,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.purexbase.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Require-Bundle: org.eclipse.xtext.purexbase,
org.eclipse.xtext,
org.eclipse.xtext.testing,
org.eclipse.jdt.core;bundle-version="3.29.0",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.xtext.xbase.lib;bundle-version="2.31.0",
org.eclipse.xtext.xbase.testing,
org.junit;bundle-version="4.13.2"
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.purexbase/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Require-Bundle: org.eclipse.xtext,
org.eclipse.xtend.lib;bundle-version="2.31.0",
org.eclipse.emf.common,
org.eclipse.xtext.common.types,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional
Import-Package: org.apache.commons.logging,
org.apache.log4j;version="1.2.24"
Bundle-RequiredExecutionEnvironment: JavaSE-11
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.redist.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ SPDX-License-Identifier: EPL-2.0
<import plugin="com.google.guava" version="30.1.0" match="compatible"/>
<import plugin="com.google.inject" version="5.0.1" match="compatible"/>
<import plugin="org.apache.log4j" version="1.2.24" match="equivalent"/>
<import plugin="org.objectweb.asm" version="9.4.0" match="compatible"/>
<import plugin="org.objectweb.asm" version="9.5.0" match="compatible"/>
<import plugin="javax.inject" version="1.0.0" match="compatible"/>
<import plugin="io.github.classgraph" version="4.8.149" match="compatible"/>
</requires>
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.runtime.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SPDX-License-Identifier: EPL-2.0
<import plugin="javax.inject" version="1.0.0" match="compatible"/>
<import plugin="com.google.inject" version="5.0.1" match="compatible"/>
<import plugin="org.apache.log4j" version="1.2.24" match="equivalent"/>
<import plugin="org.objectweb.asm" version="9.4.0" match="compatible"/>
<import plugin="org.objectweb.asm" version="9.5.0" match="compatible"/>
<import plugin="io.github.classgraph" version="4.8.149" match="compatible"/>
</requires>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<unit id="javax.inject" version="1.0.0.v20220405-0441"/>
<unit id="org.antlr.runtime" version="3.2.0.v20220404-1927"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<repository location="https://download.eclipse.org/oomph/simrel-orbit/2023-06"/>
</location>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<unit id="javax.inject" version="1.0.0.v20220405-0441"/>
<unit id="org.antlr.runtime" version="3.2.0.v20220404-1927"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<repository location="https://download.eclipse.org/oomph/simrel-orbit/2023-06"/>
</location>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<unit id="javax.inject" version="1.0.0.v20220405-0441"/>
<unit id="org.antlr.runtime" version="3.2.0.v20220404-1927"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<repository location="https://download.eclipse.org/oomph/simrel-orbit/2023-06"/>
</location>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<unit id="javax.inject" version="1.0.0.v20220405-0441"/>
<unit id="org.antlr.runtime" version="3.2.0.v20220404-1927"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<repository location="https://download.eclipse.org/oomph/simrel-orbit/2023-06"/>
</location>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<unit id="org.junit.platform.suite.commons" version="1.9.1.v20221103-2317"/>
<unit id="org.junit.vintage.engine" version="5.9.1.v20221103-2317"/>
<unit id="org.opentest4j" version="1.2.0.v20211018-1956"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<repository location="https://download.eclipse.org/oomph/simrel-orbit/2023-06"/>
</location>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<unit id="javax.inject" version="1.0.0.v20220405-0441"/>
<unit id="org.antlr.runtime" version="3.2.0.v20220404-1927"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<repository location="https://download.eclipse.org/oomph/simrel-orbit/2023-06"/>
</location>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<unit id="javax.inject" version="1.0.0.v20220405-0441"/>
<unit id="org.antlr.runtime" version="3.2.0.v20220404-1927"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<repository location="https://download.eclipse.org/oomph/simrel-orbit/2023-06"/>
</location>
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.xbase.ide/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.xtext.ide,
org.eclipse.xtext.xbase;visibility:=reexport,
org.eclipse.xtext.xbase.lib;bundle-version="2.31.0",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)",
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)",
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)"
Export-Package: org.eclipse.xtext.xbase.annotations.ide.contentassist.antlr;x-friends:="org.eclipse.xtext.xbase.ui",
org.eclipse.xtext.xbase.annotations.ide.contentassist.antlr.internal;x-friends:="org.eclipse.xtext.xbase.ui",
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.xbase.testdata/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.xtext.ide,
org.eclipse.xtext.xbase;visibility:=reexport,
org.eclipse.xtext.xbase.lib;bundle-version="2.31.0",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)",
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)",
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)"
Automatic-Module-Name: org.eclipse.xtext.xbase.ide
Export-Package: .,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Require-Bundle: org.eclipse.xtext.xbase.testlanguages;visibility:=reexport,
org.eclipse.compare;bundle-version="3.8.300",
org.eclipse.core.runtime;bundle-version="3.24.100",
org.eclipse.ui.workbench;bundle-version="3.125.0";resolution:=optional,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.eclipse.xtend.lib;resolution:=optional
Import-Package: org.apache.log4j,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.xbase.testlanguages/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Require-Bundle: org.eclipse.xtext;visibility:=reexport,
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
org.eclipse.xtext.common.types,
org.eclipse.xtext.xbase.lib;bundle-version="2.31.0",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.xtext.xbase.testing,
org.eclipse.xtext.testing
Import-Package: org.apache.log4j,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.xbase/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Require-Bundle: org.eclipse.xtext,
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
org.eclipse.xtext.xbase.lib;bundle-version="2.31.0",
org.eclipse.xtend.lib;bundle-version="2.14.0";visibility:=reexport,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional
Bundle-RequiredExecutionEnvironment: JavaSE-11
Export-Package: org.eclipse.xtext.xbase,
org.eclipse.xtext.xbase.annotations;x-friends:="org.eclipse.xtext.xbase.ide,org.eclipse.xtext.xbase.tests",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ public void generate() {
if (getProjectConfig().getRuntime().getManifest() != null) {
Set<String> requiredBundles = getProjectConfig().getRuntime().getManifest().getRequiredBundles();
requiredBundles.add("org.eclipse.xtext.common.types");
requiredBundles.add("org.objectweb.asm;bundle-version=\"[9.4.0,9.5.0)\";resolution:=optional");
requiredBundles.add("org.objectweb.asm;bundle-version=\"[9.5.0,9.6.0)\";resolution:=optional");
}
if (getProjectConfig().getRuntimeTest().getManifest() != null) {
Set<String> requiredBundles = getProjectConfig().getRuntimeTest().getManifest().getRequiredBundles();
requiredBundles.add("org.objectweb.asm;bundle-version=\"[9.4.0,9.5.0)\";resolution:=optional");
requiredBundles.add("org.objectweb.asm;bundle-version=\"[9.5.0,9.6.0)\";resolution:=optional");
}
if (getProjectConfig().getEclipsePlugin().getManifest() != null) {
Set<String> requiredBundles = getProjectConfig().getEclipsePlugin().getManifest().getRequiredBundles();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Require-Bundle: org.eclipse.xtext.example.domainmodel,
org.eclipse.xtext.testing,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.eclipse.xtext.xbase.testing,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional
Bundle-RequiredExecutionEnvironment: JavaSE-11
Export-Package: org.eclipse.xtext.example.domainmodel.tests;x-internal=true
Import-Package: org.hamcrest.core,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Require-Bundle: org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
org.eclipse.xtext.util,
org.eclipse.xtext.xbase,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional
Bundle-RequiredExecutionEnvironment: JavaSE-11
Export-Package: org.eclipse.xtext.example.domainmodel,
org.eclipse.xtext.example.domainmodel.domainmodel,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Require-Bundle: org.eclipse.xtext.example.fowlerdsl,
org.eclipse.xtext.testing,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.junit,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional
Bundle-RequiredExecutionEnvironment: JavaSE-11
Export-Package: org.eclipse.xtext.example.fowlerdsl.tests;x-internal=true
Import-Package: org.hamcrest.core,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Require-Bundle: org.eclipse.xtext.example.homeautomation,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.eclipse.xtext.xbase.testing,
org.junit;bundle-version="4.13.2",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional
Bundle-RequiredExecutionEnvironment: JavaSE-11
Export-Package: org.eclipse.xtext.example.homeautomation.tests;x-internal=true
Import-Package: org.hamcrest.core,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Require-Bundle: org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
org.eclipse.xtext.util,
org.eclipse.xtext.xbase,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional
Bundle-RequiredExecutionEnvironment: JavaSE-11
Export-Package: org.eclipse.xtext.example.homeautomation,
org.eclipse.xtext.example.homeautomation.formatting2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class TargetPlatformProject extends ProjectDescriptor {
<unit id="org.junit.vintage.engine" version="5.9.1.v20221103-2317"/>
<unit id="org.opentest4j" version="1.2.0.v20211018-1956"/>
«ENDIF»
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<repository location="https://download.eclipse.org/oomph/simrel-orbit/2023-06"/>
</location>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public CharSequence target() {
}
}
_builder.append("\t\t\t");
_builder.append("<unit id=\"org.objectweb.asm\" version=\"9.4.0.v20221107-1714\"/>");
_builder.append("<unit id=\"org.objectweb.asm\" version=\"9.5.0\"/>");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("<unit id=\"io.github.classgraph\" version=\"4.8.149.v20220915-0556\"/>");
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Require-Bundle: org.eclipse.emf.ecore.xmi;bundle-version="2.16.0";visibility:=re
org.eclipse.emf.common;bundle-version="2.24.0",
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)";visibility:=reexport,
com.google.inject;bundle-version="5.0.1";visibility:=reexport,
org.objectweb.asm;bundle-version="[9.4.0,9.5.0)";resolution:=optional,
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.emf.mwe.core;bundle-version="1.8.0";resolution:=optional;visibility:=reexport,
org.eclipse.emf.mwe.utils;bundle-version="1.8.0";resolution:=optional;visibility:=reexport,
org.eclipse.xtend;bundle-version="2.2.0";resolution:=optional,
Expand Down
2 changes: 1 addition & 1 deletion releng/org.eclipse.xtext.contributor/Xtext.setup
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
name="org.eclipse.lsp4j.sdk.feature.group"/>
<requirement
name="org.objectweb.asm"
versionRange="[9.4.0,9.5.0)"/>
versionRange="[9.5.0,9.6.0)"/>
<requirement
name="io.github.classgraph"
versionRange="[4.8.149,4.9.0)"/>
Expand Down
2 changes: 1 addition & 1 deletion xtext-latest.target
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<unit id="org.aopalliance" version="1.0.0.v20220404-1927"/>
<unit id="org.opentest4j" version="0.0.0"/>
<unit id="org.apiguardian" version="0.0.0"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<unit id="org.slf4j.binding.simple" version="0.0.0"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
Expand Down
2 changes: 1 addition & 1 deletion xtext-r202203.target
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<unit id="org.aopalliance" version="1.0.0.v20220404-1927"/>
<unit id="org.opentest4j" version="0.0.0"/>
<unit id="org.apiguardian" version="0.0.0"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<unit id="org.slf4j.binding.simple" version="0.0.0"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
Expand Down
2 changes: 1 addition & 1 deletion xtext-r202206.target
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<unit id="org.aopalliance" version="1.0.0.v20220404-1927"/>
<unit id="org.opentest4j" version="0.0.0"/>
<unit id="org.apiguardian" version="0.0.0"/>
<unit id="org.objectweb.asm" version="9.4.0.v20221107-1714"/>
<unit id="org.objectweb.asm" version="9.5.0"/>
<unit id="io.github.classgraph" version="4.8.149.v20220915-0556"/>
<unit id="org.slf4j.binding.simple" version="0.0.0"/>
<unit id="org.junit" version="4.13.2.v20211018-1956"/>
Expand Down
Loading

0 comments on commit 7db573c

Please sign in to comment.