This is an automated email from the ASF dual-hosted git repository. rec pushed a commit to branch bugfix/266-Unable-to-install-UIMA-3.3.1-Eclipse-Plugins-in-Eclipse-2022-09 in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git
commit 6b22ad2ca1e6999acf0cf665c3606d3940ebb1e9 Author: Richard Eckart de Castilho <[email protected]> AuthorDate: Wed Jan 11 07:43:06 2023 +0100 Issue #266: Unable to install UIMA 3.3.1 Eclipse Plugins in Eclipse 2022-09 - Remove feature dependency on slf4j bundle from m2e - Block (optional) import of slf4j impl package in runtime --- uimaj-eclipse-feature-runtime/feature.xml | 1 - uimaj-ep-runtime/pom.xml | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/uimaj-eclipse-feature-runtime/feature.xml b/uimaj-eclipse-feature-runtime/feature.xml index a270daf18..43bb52b37 100644 --- a/uimaj-eclipse-feature-runtime/feature.xml +++ b/uimaj-eclipse-feature-runtime/feature.xml @@ -150,7 +150,6 @@ Apache UIMA is a trademark of the Apache Software Foundation in the United State <requires> <import plugin="org.slf4j.api"/> - <import plugin="org.eclipse.m2e.maven.runtime.slf4j.simple"/> </requires> <plugin diff --git a/uimaj-ep-runtime/pom.xml b/uimaj-ep-runtime/pom.xml index c2aa0c773..14d7b3bff 100644 --- a/uimaj-ep-runtime/pom.xml +++ b/uimaj-ep-runtime/pom.xml @@ -195,7 +195,8 @@ </_exportcontents> <Import-Package> - org.slf4j*, + !org.slf4j.impl, + org.slf4j.*, com.apple.eio;resolution:=optional, !com.strobel.assembler, !com.strobel.assembler.metadata,
