Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PlexusConfigurationException (0.21 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

         */
        @Deprecated
        public PluginDescriptor build(Reader reader) throws PlexusConfigurationException {
            return build(reader, null);
        }
    
        /**
         * @deprecated use {@link #build(ReaderSupplier, String)}
         */
        @Deprecated
        public PluginDescriptor build(Reader reader, String source) throws PlexusConfigurationException {
            return build(() -> reader, source);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/InvalidPluginDescriptorException.java

     * under the License.
     */
    package org.apache.maven.plugin.descriptor;
    
    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    
    /**
     * InvalidPluginDescriptorException
     */
    public class InvalidPluginDescriptorException extends PlexusConfigurationException {
    
        public InvalidPluginDescriptorException(String message, Throwable cause) {
            super(message, cause);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginContainerException.java

    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    import org.codehaus.plexus.component.repository.exception.ComponentRepositoryException;
    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    
    /**
     * Exception which occurs to indicate that the plugin cannot be initialized due
     * to some deeper problem with Plexus. Context information includes the groupId,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

    import org.codehaus.plexus.component.repository.ComponentRequirement;
    import org.codehaus.plexus.configuration.PlexusConfiguration;
    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertFalse;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:51:47 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java

    import org.codehaus.plexus.classworlds.realm.NoSuchRealmException;
    import org.codehaus.plexus.component.repository.exception.ComponentRepositoryException;
    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    
    /**
     * Exception in the plugin manager.
     */
    public class PluginManagerException extends Exception {
    
        private final String pluginGroupId;
    
        private final String pluginArtifactId;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    import org.codehaus.plexus.configuration.DefaultPlexusConfiguration;
    import org.codehaus.plexus.configuration.PlexusConfiguration;
    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    import org.codehaus.plexus.personality.plexus.lifecycle.phase.Contextualizable;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.graph.DependencyFilter;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top