Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for PluginVersionResolutionException (0.69 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionResolutionException.java

    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
     * PluginVersionResolutionException
     */
    public class PluginVersionResolutionException extends Exception {
        private final String groupId;
    
        private final String artifactId;
    
        private final String baseMessage;
    
        public PluginVersionResolutionException(String groupId, String artifactId, String baseMessage, Throwable cause) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleTaskSegmentCalculator.java

    import org.apache.maven.plugin.PluginNotFoundException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    
    /**
     * <p>
     * Calculates the task segments in the build
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.project.MavenProject;
    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    
    /**
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleExecutionPlanCalculator.java

    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.project.MavenProject;
    
    /**
     * @since 3.0
     */
    public interface LifecycleExecutionPlanCalculator {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.plugin.version.PluginVersionNotFoundException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    import org.apache.maven.settings.Settings;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

    import org.apache.maven.plugin.descriptor.Parameter;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.project.MavenProject;
    
    /**
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    @Named
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java

    import org.apache.maven.plugin.PluginNotFoundException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.project.MavenProject;
    
    /**
     * A facade that provides lifecycle services to components outside Maven core.
     *
     */
    public interface LifecycleExecutor {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

    import org.apache.maven.plugin.version.PluginVersionNotFoundException;
    import org.apache.maven.plugin.version.PluginVersionRequest;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.plugin.version.PluginVersionResolver;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

    import org.apache.maven.plugin.PluginNotFoundException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.project.MavenProject;
    
    /**
     * A stub dependency graph that is custom-made for testing concurrent build graph evaluations.
     * <p>
     * Implements a graph as follows:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/PluginVersionResolverStub.java

     * under the License.
     */
    package org.apache.maven.lifecycle.internal.stub;
    
    import org.apache.maven.plugin.version.PluginVersionRequest;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.plugin.version.PluginVersionResolver;
    import org.apache.maven.plugin.version.PluginVersionResult;
    import org.eclipse.aether.repository.ArtifactRepository;
    
    /**
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top