diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index cb6fc23968..4c08724ed3 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -25,8 +25,9 @@ Require-Bundle: com.avaloq.tools.ddk.check.core, org.eclipse.ui.workbench;resolution:=optional, org.eclipse.xtext.xbase, org.eclipse.xtext.xbase.lib, - org.apache.logging.log4j, org.apache.commons.lang, + org.apache.logging.log4j.api, + org.apache.logging.log4j.core, org.eclipse.xtext.xbase.testing, junit-jupiter-api, junit-jupiter-engine, diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index f013cda4b3..fb168405b9 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -21,7 +21,8 @@ Require-Bundle: org.eclipse.xtext, com.avaloq.tools.ddk.check.core, com.avaloq.tools.ddk.check.runtime.core, org.eclipse.xtext.xbase.lib, - org.apache.logging.log4j, + org.apache.logging.log4j.api, + org.apache.logging.log4j.core, org.objectweb.asm;resolution:=optional, io.github.classgraph.classgraph Export-Package: com.avaloq.tools.ddk.checkcfg, diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/PluginTestProjectManager.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/PluginTestProjectManager.java index bf2e824731..1131bae1dd 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/PluginTestProjectManager.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/PluginTestProjectManager.java @@ -49,7 +49,7 @@ public class PluginTestProjectManager extends XtextTestProjectManager { // org.eclipse.osgi needed for NLS // org.apache.logging.log4j needed for logging in generated StandaloneSetup - private static final List REQUIRED_BUNDLES = newArrayList("org.eclipse.xtext.xbase.lib", "org.eclipse.xtend.lib", "org.eclipse.emf.ecore", "com.avaloq.tools.ddk.check.core", "com.avaloq.tools.ddk.check.runtime.core", "com.avaloq.tools.ddk.check.lib", "com.avaloq.tools.ddk.xtext", "org.eclipse.xtext", "org.eclipse.osgi", "org.eclipse.xtend", "org.eclipse.core.runtime", "org.eclipse.xtext.xbase", "org.apache.logging.log4j"); + private static final List REQUIRED_BUNDLES = newArrayList("org.eclipse.xtext.xbase.lib", "org.eclipse.xtend.lib", "org.eclipse.emf.ecore", "com.avaloq.tools.ddk.check.core", "com.avaloq.tools.ddk.check.runtime.core", "com.avaloq.tools.ddk.check.lib", "com.avaloq.tools.ddk.xtext", "org.eclipse.xtext", "org.eclipse.osgi", "org.eclipse.xtend", "org.eclipse.core.runtime", "org.eclipse.xtext.xbase", "org.apache.logging.log4j.api", "org.apache.logging.log4j.core"); private final Injector injector; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java index 21f8b1f119..c4fe827362 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java @@ -73,6 +73,6 @@ public void testTriggerRespectsAutoBuilding() { when(workspace.getRoot()).thenReturn(root); when(root.getProjects()).thenReturn(projects); buildTrigger.scheduleFullBuild(); - verify(scheduler).scheduleBuildIfNecessary(eq(Arrays.asList(projects)), ArgumentMatchers. any()); + verify(scheduler).scheduleBuildIfNecessary(eq(Arrays.asList(projects))); } } diff --git a/ddk-target/ddk.target b/ddk-target/ddk.target index ac5e10254b..4c2a3e7903 100644 --- a/ddk-target/ddk.target +++ b/ddk-target/ddk.target @@ -44,14 +44,16 @@ - - - - - - - - + + + + + + + + + +