Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mojoExecution (0.67 sec)

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

        public void executeMojo(MavenSession session, MojoExecution mojoExecution)
                throws MojoFailureException, MojoExecutionException, PluginConfigurationException, PluginManagerException {
            MavenProject project = session.getCurrentProject();
    
            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            Mojo mojo = null;
    
            ClassRealm pluginRealm;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java

                plugin.addExecution(pluginExecution);
            }
    
            return plugin;
        }
    
        public void calculateForkedExecutions(MojoExecution mojoExecution, MavenSession session) {}
    
        public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) {
            return Collections.emptyList();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            }
        }
    
        public void releaseMojo(Object mojo, MojoExecution mojoExecution) {
            if (mojo != null) {
                try {
                    container.release(mojo);
                } catch (ComponentLifecycleException e) {
                    String goalExecId = mojoExecution.getGoal();
    
                    if (mojoExecution.getExecutionId() != null) {
                        logger.debug(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

        @Nonnull
        @Override
        public Map<String, Object> getPluginContext(Project project) {
            nonNull(project, "project");
            try {
                MojoExecution mojoExecution = lookup.lookup(MojoExecution.class);
                MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
                PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

    public class DefaultMojoExecution implements MojoExecution {
        private final InternalMavenSession session;
        private final org.apache.maven.plugin.MojoExecution delegate;
    
        public DefaultMojoExecution(InternalMavenSession session, org.apache.maven.plugin.MojoExecution delegate) {
            this.session = session;
            this.delegate = delegate;
        }
    
        public org.apache.maven.plugin.MojoExecution getDelegate() {
            return delegate;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            MojoExecution mojoExecution = newMojoExecution(session);
    
            return new PluginParameterExpressionEvaluatorV4(
                    session, project != null ? new DefaultProject(session, project) : null, mojoExecution);
        }
    
        private MojoExecution newMojoExecution(Session session) {
            PluginDescriptor pd = new PluginDescriptor();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultEvent.java

     * under the License.
     */
    package org.apache.maven.internal.impl;
    
    import java.util.Optional;
    
    import org.apache.maven.api.Event;
    import org.apache.maven.api.EventType;
    import org.apache.maven.api.MojoExecution;
    import org.apache.maven.api.Project;
    import org.apache.maven.api.Session;
    import org.apache.maven.execution.ExecutionEvent;
    
    public class DefaultEvent implements Event {
        private final InternalMavenSession session;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2K bytes
    - Viewed (0)
  8. maven-core/pom.xml

                  <!-- Remove plexus logger -->
                  <exclude>org.apache.maven.plugin.PluginParameterExpressionEvaluator#PluginParameterExpressionEvaluator(org.apache.maven.execution.MavenSession,org.apache.maven.plugin.MojoExecution,org.apache.maven.project.path.PathTranslator,org.codehaus.plexus.logging.Logger,org.apache.maven.project.MavenProject,java.util.Properties):CONSTRUCTOR_REMOVED</exclude>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
Back to top