This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git
The following commit(s) were added to refs/heads/master by this push: new aa09d72 Drop dependency to old plexus-container-default from m-plugin-testing aa09d72 is described below commit aa09d72052dee9d3b42781ce40f465374257d538 Author: Sylwester Lachiewicz <slachiew...@apache.org> AuthorDate: Tue Feb 2 12:52:20 2021 +0100 Drop dependency to old plexus-container-default from m-plugin-testing org.eclipse.sisu.plexus will do work --- .../plugins/enforcer/MockPlexusContainer.java | 662 --------------------- pom.xml | 6 + 2 files changed, 6 insertions(+), 662 deletions(-) diff --git a/enforcer-rules/src/test/java/org/apache/maven/plugins/enforcer/MockPlexusContainer.java b/enforcer-rules/src/test/java/org/apache/maven/plugins/enforcer/MockPlexusContainer.java deleted file mode 100644 index a73cbbd..0000000 --- a/enforcer-rules/src/test/java/org/apache/maven/plugins/enforcer/MockPlexusContainer.java +++ /dev/null @@ -1,662 +0,0 @@ -package org.apache.maven.plugins.enforcer; - -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import java.io.File; -import java.io.Reader; -import java.util.Date; -import java.util.List; -import java.util.Map; - -import org.apache.maven.execution.RuntimeInformation; -import org.apache.maven.project.MavenProject; -import org.codehaus.classworlds.ClassRealm; -import org.codehaus.plexus.PlexusContainer; -import org.codehaus.plexus.PlexusContainerException; -import org.codehaus.plexus.component.composition.UndefinedComponentComposerException; -import org.codehaus.plexus.component.discovery.ComponentDiscoveryListener; -import org.codehaus.plexus.component.factory.ComponentInstantiationException; -import org.codehaus.plexus.component.repository.ComponentDescriptor; -import org.codehaus.plexus.component.repository.exception.ComponentLifecycleException; -import org.codehaus.plexus.component.repository.exception.ComponentLookupException; -import org.codehaus.plexus.component.repository.exception.ComponentRepositoryException; -import org.codehaus.plexus.configuration.PlexusConfigurationException; -import org.codehaus.plexus.configuration.PlexusConfigurationResourceException; -import org.codehaus.plexus.context.Context; -import org.codehaus.plexus.logging.Logger; -import org.codehaus.plexus.logging.LoggerManager; - -/** - * The Class MockPlexusContainer. - * - * @author <a href="mailto:bri...@apache.org">Brian Fox</a> - */ -public class MockPlexusContainer - implements PlexusContainer -{ - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#lookup(java.lang.String) - */ - public Object lookup( String theComponentKey ) - throws ComponentLookupException - { - if ( theComponentKey.equals( MavenProject.class.getName() ) ) - { - return new MavenProject(); - } - else if ( theComponentKey.equals( RuntimeInformation.class.getName() ) ) - { - return new MockRuntimeInformation(); - } - - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#addComponentDescriptor(org.codehaus.plexus.component.repository.ComponentDescriptor) - */ - public void addComponentDescriptor( ComponentDescriptor theComponentDescriptor ) - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#addContextValue(java.lang.Object, java.lang.Object) - */ - public void addContextValue( Object theKey, Object theValue ) - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#addJarRepository(java.io.File) - */ - public void addJarRepository( File theRepository ) - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#addJarResource(java.io.File) - */ - public void addJarResource( File theResource ) - throws PlexusContainerException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#composeComponent(java.lang.Object, - * org.codehaus.plexus.component.repository.ComponentDescriptor) - */ - public void composeComponent( Object theComponent, ComponentDescriptor theComponentDescriptor ) - throws UndefinedComponentComposerException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#createChildContainer(java.lang.String, java.util.List, java.util.Map) - */ - public PlexusContainer createChildContainer( String theName, List theClasspathJars, Map theContext ) - throws PlexusContainerException - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#createChildContainer(java.lang.String, java.util.List, java.util.Map, - * java.util.List) - */ - public PlexusContainer createChildContainer( String theName, List theClasspathJars, Map theContext, - List theDiscoveryListeners ) - throws PlexusContainerException - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#createComponentInstance(org.codehaus.plexus.component.repository.ComponentDescriptor) - */ - public Object createComponentInstance( ComponentDescriptor theComponentDescriptor ) - throws ComponentInstantiationException, ComponentLifecycleException - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#dispose() - */ - public void dispose() - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getChildContainer(java.lang.String) - */ - public PlexusContainer getChildContainer( String theName ) - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getComponentDescriptor(java.lang.String) - */ - public ComponentDescriptor getComponentDescriptor( String theComponentKey ) - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getComponentDescriptorList(java.lang.String) - */ - public List getComponentDescriptorList( String theRole ) - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getComponentDescriptorMap(java.lang.String) - */ - public Map getComponentDescriptorMap( String theRole ) - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getComponentRealm(java.lang.String) - */ - public ClassRealm getComponentRealm( String theComponentKey ) - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getContext() - */ - public Context getContext() - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getCreationDate() - */ - public Date getCreationDate() - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getLogger() - */ - public Logger getLogger() - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#getLoggerManager() - */ - public LoggerManager getLoggerManager() - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#hasChildContainer(java.lang.String) - */ - public boolean hasChildContainer( String theName ) - { - // TODO Auto-generated method stub - return false; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#hasComponent(java.lang.String) - */ - public boolean hasComponent( String theComponentKey ) - { - // TODO Auto-generated method stub - return false; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#hasComponent(java.lang.String, java.lang.String) - */ - public boolean hasComponent( String theRole, String theRoleHint ) - { - // TODO Auto-generated method stub - return false; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#initialize() - */ - public void initialize() - throws PlexusContainerException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#isInitialized() - */ - public boolean isInitialized() - { - // TODO Auto-generated method stub - return false; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#isStarted() - */ - public boolean isStarted() - { - // TODO Auto-generated method stub - return false; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#lookup(java.lang.String, java.lang.String) - */ - public Object lookup( String theRole, String theRoleHint ) - throws ComponentLookupException - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#lookupList(java.lang.String) - */ - public List lookupList( String theRole ) - throws ComponentLookupException - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#lookupMap(java.lang.String) - */ - public Map lookupMap( String theRole ) - throws ComponentLookupException - { - // TODO Auto-generated method stub - return null; - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#registerComponentDiscoveryListener(org.codehaus.plexus.component.discovery.ComponentDiscoveryListener) - */ - public void registerComponentDiscoveryListener( ComponentDiscoveryListener theListener ) - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#release(java.lang.Object) - */ - public void release( Object theComponent ) - throws ComponentLifecycleException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#releaseAll(java.util.Map) - */ - public void releaseAll( Map theComponents ) - throws ComponentLifecycleException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#releaseAll(java.util.List) - */ - public void releaseAll( List theComponents ) - throws ComponentLifecycleException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#removeChildContainer(java.lang.String) - */ - public void removeChildContainer( String theName ) - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#removeComponentDiscoveryListener(org.codehaus.plexus.component.discovery.ComponentDiscoveryListener) - */ - public void removeComponentDiscoveryListener( ComponentDiscoveryListener theListener ) - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#resume(java.lang.Object) - */ - public void resume( Object theComponent ) - throws ComponentLifecycleException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#setConfigurationResource(java.io.Reader) - */ - public void setConfigurationResource( Reader theConfiguration ) - throws PlexusConfigurationResourceException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#setLoggerManager(org.codehaus.plexus.logging.LoggerManager) - */ - public void setLoggerManager( LoggerManager theLoggerManager ) - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#setParentPlexusContainer(org.codehaus.plexus.PlexusContainer) - */ - public void setParentPlexusContainer( PlexusContainer theParentContainer ) - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#start() - */ - public void start() - throws PlexusContainerException - { - // TODO Auto-generated method stub - - } - - /* - * (non-Javadoc) - * - * @see org.codehaus.plexus.PlexusContainer#suspend(java.lang.Object) - */ - public void suspend( Object theComponent ) - throws ComponentLifecycleException - { - // TODO Auto-generated method stub - - } - - @Override - public <T> T lookup( Class<T> role ) - throws ComponentLookupException - { - // TODO Auto-generated method stub - return null; - } - - @Override - public <T> T lookup( Class<T> role, String hint ) - throws ComponentLookupException - { - // TODO Auto-generated method stub - return null; - } - - @Override - public <T> T lookup( Class<T> type, String role, String hint ) - throws ComponentLookupException - { - // TODO Auto-generated method stub - return null; - } - - @Override - public <T> List<T> lookupList( Class<T> role ) - throws ComponentLookupException - { - // TODO Auto-generated method stub - return null; - } - - @Override - public <T> Map<String, T> lookupMap( Class<T> role ) - throws ComponentLookupException - { - // TODO Auto-generated method stub - return null; - } - - @Override - public boolean hasComponent( Class<?> role ) - { - // TODO Auto-generated method stub - return false; - } - - @Override - public boolean hasComponent( Class<?> role, String hint ) - { - // TODO Auto-generated method stub - return false; - } - - @Override - public boolean hasComponent( Class<?> type, String role, String hint ) - { - // TODO Auto-generated method stub - return false; - } - - @Override - public void addComponent( Object component, String role ) - { - // TODO Auto-generated method stub - - } - - @Override - public <T> void addComponent( T component, Class<?> role, String hint ) - { - // TODO Auto-generated method stub - - } - - @Override - public ComponentDescriptor<?> getComponentDescriptor( String role, String hint ) - { - // TODO Auto-generated method stub - return null; - } - - @Override - public <T> ComponentDescriptor<T> getComponentDescriptor( Class<T> type, String role, String hint ) - { - // TODO Auto-generated method stub - return null; - } - - @Override - public <T> List<ComponentDescriptor<T>> getComponentDescriptorList( Class<T> type, String role ) - { - // TODO Auto-generated method stub - return null; - } - - @Override - public <T> Map<String, ComponentDescriptor<T>> getComponentDescriptorMap( Class<T> type, String role ) - { - // TODO Auto-generated method stub - return null; - } - - @Override - public List<ComponentDescriptor<?>> discoverComponents( org.codehaus.plexus.classworlds.realm.ClassRealm classRealm ) - throws PlexusConfigurationException - { - // TODO Auto-generated method stub - return null; - } - - @Override - public org.codehaus.plexus.classworlds.realm.ClassRealm getContainerRealm() - { - // TODO Auto-generated method stub - return null; - } - - @Override - public org.codehaus.plexus.classworlds.realm.ClassRealm setLookupRealm( org.codehaus.plexus.classworlds.realm.ClassRealm realm ) - { - // TODO Auto-generated method stub - return null; - } - - @Override - public org.codehaus.plexus.classworlds.realm.ClassRealm getLookupRealm() - { - // TODO Auto-generated method stub - return null; - } - - @Override - public org.codehaus.plexus.classworlds.realm.ClassRealm createChildRealm( String id ) - { - // TODO Auto-generated method stub - return null; - } - -} diff --git a/pom.xml b/pom.xml index 034c9ef..fd8b0e7 100644 --- a/pom.xml +++ b/pom.xml @@ -151,6 +151,12 @@ <artifactId>maven-plugin-testing-harness</artifactId> <version>3.1.0</version> <scope>test</scope> + <exclusions> + <exclusion> + <artifactId>plexus-container-default</artifactId> + <groupId>org.codehaus.plexus</groupId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId>