Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getPluginDescriptor (0.08 sec)

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

        private final List<Parameter> parameters;
    
        private final MojoDescriptor mojo;
    
        public PluginParameterException(MojoDescriptor mojo, List<Parameter> parameters) {
            super(
                    mojo.getPluginDescriptor(),
                    "The parameters " + format(parameters) + " for goal " + mojo.getRoleHint() + " are missing or invalid");
    
            this.mojo = mojo;
    
            this.parameters = parameters;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    mojoExecution.getMojoDescriptor().getPluginDescriptor().getGroupId());
            assertEquals(
                    "maven-resources-plugin",
                    mojoExecution.getMojoDescriptor().getPluginDescriptor().getArtifactId());
            assertEquals(
                    "0.1", mojoExecution.getMojoDescriptor().getPluginDescriptor().getVersion());
        }
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                }
                message += ": " + e.getMessage();
    
                throw new PluginConfigurationException(mojoDescriptor.getPluginDescriptor(), message, e);
            } catch (ComponentLookupException e) {
                throw new PluginConfigurationException(
                        mojoDescriptor.getPluginDescriptor(),
                        "Unable to retrieve component configurator " + configuratorId + " for configuration of mojo "
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                throws PluginNotFoundException, PluginResolutionException, PluginDescriptorParsingException,
                        InvalidPluginDescriptorException {
            return mavenPluginManager.getPluginDescriptor(plugin, repositories, session);
        }
    
        // ----------------------------------------------------------------------
        // Mojo execution
        // ----------------------------------------------------------------------
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                MojoDescriptor mojoDescriptor = execution.getMojoDescriptor();
                PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor();
                String forkedGoal = mojoDescriptor.getExecuteGoal();
                String phase = mojoDescriptor.getExecutePhase();
                // We have a fork goal
    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