Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 630 for execution (0.27 sec)

  1. maven-core/src/site/apt/plugin-execution-isolation.apt

    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
     -----
     Maven plugins
     -----
     The Maven Team
     -----
    
    Maven plugin execution isolation
    
     Maven2 takes advantage of Plexus' ability to execute a component using a
     ClassWorlds ClassRealm that is populated with the JAR containing the
     component in question and all of its dependencies. Using ClassWorlds
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 03 09:12:28 GMT 2017
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

                            for (String goal : execution.getGoals()) {
                                MojoExecution mojoExecution = new MojoExecution(plugin, goal, execution.getId());
                                mojoExecution.setLifecyclePhase(execution.getPhase());
                                addMojoExecution(phaseBindings, mojoExecution, execution.getPriority());
                            }
                        }
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml

              <artifactId>maven-it-plugin-a</artifactId>
              <version>1.0-SNAPSHOT</version>
              <executions>
                <execution>
                  <id>parent-1</id>
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-1</goal>
                  </goals>
                </execution>
                <execution>
                  <id>parent-2</id>
                  <phase>validate</phase>
                  <goals>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/ExecutionEvent.java

        /**
         * Gets the current mojo execution (if any).
         *
         * @return The current mojo execution or {@code null} if not applicable.
         */
        MojoExecution getMojoExecution();
    
        /**
         * Gets the exception that caused the event (if any).
         *
         * @return The exception or {@code null} if none.
         */
        Exception getException();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/duplicate-plugins-merged-pom.xml

                  <version>1</version>
                </dependency>
              </dependencies>
              <executions>
                <execution>
                  <id>first</id>
                  <goals>
                    <goal>compile</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
            <plugin>
              <artifactId>maven-compiler-plugin</artifactId>
              <dependencies>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulator.java

         * method is called on a new/empty execution request before the caller mutates it to fit its needs.
         *
         * @param request The execution request to populate, must not be {@code null}.
         * @param toolchains The toolchains to copy into the execution request, may be {@code null}.
         * @return The populated execution request, never {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/pom.xml

              </execution>
              <execution>
                <id>parent-2</id>
                <phase>parent-2</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.7K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/sub/pom.xml

            <!-- NOTE: Use different version than parent -->
            <version>2.0</version>
            <executions>
              <execution>
                <id>child-1</id>
                <phase>child-1</phase>
              </execution>
              <execution>
                <id>child-2</id>
                <phase>child-2</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.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-exec-merging/w-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)
Back to top