clean up dependencies on apache commons libs and move those dependencies to impoort-package where necessary to be prepared for bundle symbolic name changes coming up

This commit is contained in:
Martin Lippert
2023-11-16 15:37:20 +01:00
parent 741df4ee03
commit effb95f1a7
19 changed files with 21 additions and 38 deletions

View File

@@ -13,7 +13,6 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ui.views,
org.json,
org.eclipse.core.resources,
org.apache.commons.lang,
org.eclipse.jface,
org.eclipse.ui.workbench,
org.eclipse.jdt.core,
@@ -22,6 +21,7 @@ Require-Bundle: org.eclipse.core.runtime,
com.google.guava,
org.springsource.ide.eclipse.commons.livexp,
org.springsource.ide.eclipse.commons.frameworks.core
Import-Package: org.apache.commons.lang3
Bundle-ActivationPolicy: lazy
Bundle-Vendor: Spring IDE Developers
Bundle-Activator: org.springframework.ide.eclipse.beans.ui.live.LiveBeansUiPlugin

View File

@@ -13,7 +13,7 @@ package org.springframework.ide.eclipse.beans.ui.live.model;
import java.util.LinkedHashSet;
import java.util.Set;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
/**
* @author Leo Dos Santos

View File

@@ -21,7 +21,6 @@ Require-Bundle: org.springframework.ide.eclipse.boot.dash,
org.springframework.ide.eclipse.editor.support,
org.eclipse.jdt.launching,
org.eclipse.jdt.core,
org.apache.commons.io,
org.springframework.ide.eclipse.docker.client;bundle-version="3.9.14",
org.eclipse.linuxtools.docker.ui;resolution:=optional,
org.eclipse.linuxtools.docker.core;resolution:=optional

View File

@@ -7,7 +7,6 @@ Bundle-Vendor: VMware, Inc
Require-Bundle: org.junit,
org.eclipse.core.resources,
org.springsource.ide.eclipse.commons.tests.util,
org.apache.commons.io,
org.eclipse.debug.core,
org.eclipse.jdt.core,
org.springsource.ide.eclipse.commons.livexp,
@@ -25,14 +24,12 @@ Require-Bundle: org.junit,
org.eclipse.equinox.security,
org.reactivestreams.reactive-streams;bundle-version="1.0.0",
io.projectreactor.reactor-core;bundle-version="[3.3.1,3.3.2)",
org.apache.commons.lang,
org.eclipse.lsp4e,
org.eclipse.lsp4j,
org.springframework.ide.eclipse.boot.dash;bundle-version="3.9.12",
org.springframework.ide.eclipse.beans.ui.live,
org.eclipse.jface.text,
org.eclipse.ui.editors,
org.apache.commons.lang3,
org.springframework.ide.eclipse.editor.support,
org.eclipse.ui.ide,
org.springsource.ide.eclipse.commons.core,

View File

@@ -38,7 +38,6 @@ Require-Bundle: org.eclipse.ui,
org.apache.httpcomponents.httpclient,
org.apache.httpcomponents.httpcore,
org.springsource.ide.eclipse.commons.core,
org.apache.commons.lang3,
org.springframework.ide.eclipse.editor.support,
org.springframework.ide.eclipse.beans.ui.live,
org.eclipse.core.commands,

View File

@@ -18,8 +18,6 @@ Require-Bundle: org.eclipse.ui,
org.springsource.ide.eclipse.commons.frameworks.core,
org.springframework.ide.eclipse.boot.test,
org.springsource.ide.eclipse.commons.frameworks.test.util,
org.apache.commons.io,
org.apache.commons.lang3,
org.springframework.ide.eclipse.buildship30
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy

View File

@@ -9,7 +9,6 @@ Require-Bundle: org.eclipse.core.runtime,
org.junit,
org.eclipse.core.resources,
org.springsource.ide.eclipse.commons.tests.util,
org.apache.commons.io,
org.eclipse.debug.core,
org.eclipse.jdt.core,
org.springsource.ide.eclipse.commons.livexp,
@@ -27,7 +26,6 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.equinox.security,
org.reactivestreams.reactive-streams;bundle-version="1.0.2",
io.projectreactor.reactor-core;bundle-version="[3.3.1,3.3.2)",
org.apache.commons.lang,
javax.ws.rs;bundle-version="2.0.1",
org.eclipse.osgi,
org.hamcrest.library

View File

@@ -28,7 +28,6 @@ Require-Bundle: org.eclipse.ui,
org.glassfish.jersey.core.jersey-common;bundle-version="2.22.1",
org.springframework.ide.eclipse.boot.validation,
org.springframework.ide.eclipse.boot.launch,
org.apache.commons.lang3,
com.google.guava,
org.hamcrest.library;bundle-version="1.3.0",
org.eclipse.m2e.core

View File

@@ -14,11 +14,6 @@ Require-Bundle: org.eclipse.ui,
org.springsource.ide.eclipse.commons.frameworks.core,
org.springsource.ide.eclipse.commons.core,
org.springframework.ide.eclipse.boot,
org.apache.commons.codec,
org.apache.commons.compress,
org.apache.commons.io,
org.apache.commons.logging,
org.apache.commons.lang3,
org.springsource.ide.eclipse.commons.ui,
org.eclipse.m2e.core,
org.eclipse.m2e.maven.runtime,
@@ -49,6 +44,10 @@ Export-Package: org.springframework.ide.eclipse.boot.wizard,
Bundle-Vendor: VMware, Inc.
Import-Package: org.eclipse.core.runtime,
org.eclipse.core.runtime.jobs,
org.apache.commons.compress.archivers.zip,
org.apache.commons.io,
org.apache.commons.codec.binary,
org.apache.commons.lang3,
org.eclipse.osgi.util,
org.osgi.framework
Automatic-Module-Name: org.springframework.ide.eclipse.boot.wizard

View File

@@ -20,9 +20,7 @@ Require-Bundle: org.eclipse.core.resources,
org.eclipse.jdt.core,
org.eclipse.jdt.debug.ui,
org.eclipse.jdt.launching,
org.apache.commons.collections,
org.springsource.ide.eclipse.commons.frameworks.core,
org.apache.commons.io,
org.eclipse.jdt.ui,
org.springsource.ide.eclipse.commons.ui,
org.eclipse.ui.ide,
@@ -34,7 +32,6 @@ Require-Bundle: org.eclipse.core.resources,
org.eclipse.ltk.core.refactoring,
org.json,
org.eclipse.m2e.launching,
org.apache.commons.lang3,
io.projectreactor.reactor-core;bundle-version="[3.3.1,3.3.2)",
org.reactivestreams.reactive-streams,
com.google.guava,

View File

@@ -14,7 +14,6 @@ Require-Bundle: org.eclipse.core.runtime,
org.springsource.ide.eclipse.commons.frameworks.core,
org.springframework.ide.eclipse.boot.wizard,
org.eclipse.jface,
org.apache.commons.io,
org.eclipse.buildship.core;bundle-version="[3.0.0,4.0.0)";resolution:=optional,
org.eclipse.ui.workbench,
com.google.guava,

View File

@@ -28,7 +28,8 @@ Import-Package: org.eclipse.core.commands.common,
org.springsource.ide.eclipse.commons.core,
org.springsource.ide.eclipse.commons.core.util,
org.springsource.ide.eclipse.commons.frameworks.core.util,
org.springsource.ide.eclipse.commons.ui
org.springsource.ide.eclipse.commons.ui,
org.apache.commons.io
Bundle-Activator: org.springframework.ide.eclipse.xml.namespaces.SpringXmlNamespacesPlugin
Bundle-Version: 4.21.0.qualifier
Export-Package: org.springframework.ide.eclipse.xml.namespaces,
@@ -40,5 +41,4 @@ Export-Package: org.springframework.ide.eclipse.xml.namespaces,
Bundle-ActivationPolicy: lazy
Require-Bundle: com.google.guava,
io.projectreactor.reactor-core;bundle-version="3.1.9",
org.reactivestreams.reactive-streams;bundle-version="1.0.2",
org.apache.commons.io;bundle-version="2.8.0"
org.reactivestreams.reactive-streams;bundle-version="1.0.2"