Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MavenPluginManager (0.06 sec)

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

     * that the plugins/mojos can be used in arbitrary contexts. In particular, the mojos can be used for ordinary build
     * plugins as well as special purpose plugins like reports.
     *
     * @since 3.0
     */
    public interface MavenPluginManager {
    
        /**
         * Retrieves the descriptor for the specified plugin from its main artifact.
         *
         * @param plugin The plugin whose descriptor should be retrieved, must not be {@code null}.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/MojoExecutor.java

    import org.apache.maven.plugin.MavenPluginManager;
    import org.apache.maven.plugin.MojosExecutionStrategy;
    
    @Named("concurrent")
    @Singleton
    public class MojoExecutor extends org.apache.maven.lifecycle.internal.MojoExecutor {
    
        @Inject
        public MojoExecutor(
                BuildPluginManager pluginManager,
                MavenPluginManager mavenPluginManager,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java

                MavenPluginManager mavenPluginManager,
                LifecycleDependencyResolver lifeCycleDependencyResolver,
                ExecutionEventCatapult eventCatapult,
                Provider<MojosExecutionStrategy> mojosExecutionStrategy,
                MessageBuilderFactory messageBuilderFactory) {
            super(
                    pluginManager,
                    mavenPluginManager,
                    lifeCycleDependencyResolver,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Used to configure your Mojo parameters to be injected by
     * <a href="/ref/current/maven-core/apidocs/org/apache/maven/plugin/MavenPluginManager.html">
     * <code>MavenPluginManager.getConfiguredMojo(...)</code></a>.
     * <p>
     * Beans injected into Mojo parameters are prepared by <a href="https://www.eclipse.org/sisu/">Sisu</a> JSR330-based
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. impl/maven-core/src/site/apt/index.apt

       * see effective POM as shown by {{{/plugins/maven-help-plugin/effective-pom-mojo.html}<<<help:effective-pom>>>}} to see the effective plugins then goals order.
    
     * <<<MavenPluginManager>>> component ({{{./apidocs/org/apache/maven/plugin/MavenPluginManager.html}javadoc}}),
     with its <<<DefaultMavenPluginManager>>> implementation
     ({{{./xref/org/apache/maven/plugin/internal/DefaultMavenPluginManager.html}source}}),
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top