Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,424 for execution (0.44 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/scope/WeakMojoExecutionListener.java

     * under the License.
     */
    package org.apache.maven.execution.scope;
    
    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.plugin.MojoExecutionException;
    
    /**
     * Extension point that allows build extensions observe and possibly veto mojo executions.
     * <p>
     * Unlike {@link org.apache.maven.execution.MojoExecutionListener}, this extension point does not
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  2. pom.xml

    				<version>0.8.11</version>
    				<executions>
    					<execution>
    						<goals>
    							<goal>prepare-agent</goal>
    						</goals>
    					</execution>
    					<execution>
    						<id>report</id>
    						<phase>prepare-package</phase>
    						<goals>
    							<goal>report</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<groupId>com.mycila</groupId>
    XML
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  3. maven-core/lifecycle-executor.txt

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>process</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      .
      .
      .
    </plugins>
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 9.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-exec-order/wo-plugin-mgmt/pom.xml

            <executions>
              <execution>
                <id>b</id>
                <phase>validate</phase>
              </execution>
              <execution>
                <id>a</id>
                <phase>validate</phase>
              </execution>
              <execution>
                <id>d</id>
                <phase>validate</phase>
              </execution>
              <execution>
                <id>c</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

                <executions>
                  <execution>
                    <id>Active all ||${project.basedir}||</id>
                    <configuration>
                      <plugin-all-profiles-in>Active all ||${project.basedir}||</plugin-all-profiles-in>
                    </configuration>
                  </execution>
                </executions>
              </plugin>
              <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutionException.java

        }
    
        public LifecycleExecutionException(
                MessageBuilderFactory messageBuilderFactory,
                MojoExecution execution,
                MavenProject project,
                Throwable cause) {
            this(createMessage(messageBuilderFactory, execution, project, cause), execution, project, cause);
        }
    
        public MavenProject getProject() {
            return project;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml

            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <!-- NOTE: Explicitly reference "default" id here -->
                <id>default</id>
                <phase>child-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>child-non-default</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-exec-order/w-plugin-mgmt/pom.xml

            <executions>
              <execution>
                <id>b</id>
                <phase>validate</phase>
              </execution>
              <execution>
                <id>a</id>
                <phase>validate</phase>
              </execution>
              <execution>
                <id>d</id>
                <phase>validate</phase>
              </execution>
              <execution>
                <id>c</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

            this.executionId = null;
            this.configuration = null;
        }
    
        public MojoExecution(MojoDescriptor mojoDescriptor, String executionId, Source source) {
            this.mojoDescriptor = mojoDescriptor;
            this.executionId = executionId;
            this.configuration = null;
            this.source = source;
        }
    
        public MojoExecution(MojoDescriptor mojoDescriptor, String executionId) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 03 15:52:23 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.MojoExecutionListener;
    import org.apache.maven.execution.ProjectDependencyGraph;
    import org.apache.maven.execution.ProjectExecutionEvent;
    import org.apache.maven.execution.ProjectExecutionListener;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
Back to top