Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for PluginDescriptorParsingException (0.17 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

        @Override
        public PluginDescriptor loadPlugin(
                Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session)
                throws PluginNotFoundException, PluginResolutionException, PluginDescriptorParsingException,
                        InvalidPluginDescriptorException {
            return mavenPluginManager.getPluginDescriptor(plugin, repositories, session);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

            return clone(descriptors.get(cacheKey));
        }
    
        @Override
        public PluginDescriptor get(Key key, PluginDescriptorSupplier supplier)
                throws PluginDescriptorParsingException, PluginResolutionException, InvalidPluginDescriptorException {
    
            PluginDescriptor desc = descriptors.get(key);
            if (desc == null) {
                synchronized (key) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - goal not found in a plugin (probably could list the ones that are)
    
     */
    
    // PluginNotFoundException, PluginResolutionException, PluginDescriptorParsingException,
    // CycleDetectedInPluginGraphException;
    
    /**
     * Transform an exception into useful end-user message.
     */
    @Named
    @Singleton
    public class DefaultExceptionHandler implements ExceptionHandler {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

    import org.apache.maven.plugin.MavenPluginManager;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.MojoNotFoundException;
    import org.apache.maven.plugin.PluginDescriptorParsingException;
    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: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top