Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for PluginResolutionException (0.54 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

    import org.apache.maven.plugin.PluginDescriptorParsingException;
    import org.apache.maven.plugin.PluginManagerException;
    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;
    
    /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

                        PluginResolutionException, LifecyclePhaseNotFoundException, LifecycleNotFoundException {
            return getNumberOfExceutions(projectBuildList);
        }
    
        @Override
        public void calculateForkedExecutions(MojoExecution mojoExecution, MavenSession session)
                throws MojoNotFoundException, PluginNotFoundException, PluginResolutionException,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

            } catch (RuntimeException e) {
                if (e.getCause() instanceof PluginResolutionException pluginResolutionException) {
                    throw pluginResolutionException;
                }
                if (e.getCause() instanceof PluginContainerException pluginContainerException) {
                    throw pluginContainerException;
                }
                throw e;
            }
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

    import org.apache.maven.impl.RequestTraceHelper;
    import org.apache.maven.impl.resolver.RelocatedArtifact;
    import org.apache.maven.model.Dependency;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    import org.eclipse.aether.RepositorySystem;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.RequestTrace;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 15:32:43 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

    import org.apache.maven.plugin.MojoNotFoundException;
    import org.apache.maven.plugin.PluginDescriptorParsingException;
    import org.apache.maven.plugin.PluginNotFoundException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.descriptor.Parameter;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

         * @throws PluginResolutionException The plugin could be found but could not be resolved.
         * @throws InvalidPluginDescriptorException
         */
        @Override
        public PluginDescriptor loadPlugin(
                Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session)
                throws PluginNotFoundException, PluginResolutionException, PluginDescriptorParsingException,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

    import org.apache.maven.plugin.MojoNotFoundException;
    import org.apache.maven.plugin.PluginDescriptorParsingException;
    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;
    
    /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

         */
        interface Key {
            // marker interface for cache keys
        }
    
        @FunctionalInterface
        interface PluginDescriptorSupplier {
            PluginDescriptor load()
                    throws PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException;
        }
    
        Key createKey(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

    import org.apache.maven.model.Plugin;
    import org.apache.maven.model.building.ModelProblem;
    import org.apache.maven.plugin.PluginManagerException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.ProjectBuildingResult;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleTaskSegmentCalculatorStub.java

    import org.apache.maven.plugin.MojoNotFoundException;
    import org.apache.maven.plugin.PluginDescriptorParsingException;
    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;
    
    /**
     */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.3K bytes
    - Viewed (0)
Back to top