Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for participants (0.23 sec)

  1. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

            //
            // The projects need to be topologically after the participants have run their afterProjectsRead(session)
            // because the participant is free to change the dependencies of a project which can potentially change the
            // topological order of the projects, and therefore can potentially change the build order.
            //
            // Note that participants may affect the topological order of the projects but it is
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

            List<String> reactorOrder =
                    getReactorOrder("lifecycle-participant-reactor-dependency-injection", InjectReactorDependency.class);
            assertEquals(Arrays.asList("parent", "module-b", "module-a"), reactorOrder);
        }
    
        private <T> List<String> getReactorOrder(String testProject, Class<T> participant) throws Exception {
            PlexusContainer container = getContainer();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 6K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/lifecycle-listener/lifecycle-participant-reactor-dependency-injection/module-a/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>lifecycle-participant-reactor-dependency-injection</groupId>
        <artifactId>parent</artifactId>
        <version>1.0</version>
      </parent>
    
      <artifactId>module-a</artifactId>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 29 12:40:19 GMT 2014
    - 257 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven;
    
    import org.apache.maven.execution.MavenSession;
    
    /**
     * Allows core extensions to participate in Maven build session lifecycle.
     *
     * All callback methods (will) follow beforeXXX/afterXXX naming pattern to
     * indicate at what lifecycle point it is being called.
     *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.9K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/lifecycle-listener/lifecycle-participant-reactor-dependency-injection/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>lifecycle-participant-reactor-dependency-injection</groupId>
      <artifactId>parent</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <modules>
        <module>module-a</module>
        <module>module-b</module>
      </modules>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 29 12:40:19 GMT 2014
    - 305 bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-exec-order-with-lifecycle/pom.xml

      <packaging>JAR</packaging>
    
      <name>Maven Integration Test :: MNG-4341</name>
      <description>
        Test that plugins bound to the same phase get executed in POM order even if one of the plugins participates
        in the default lifecycle bindings for the project's packaging.
      </description>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    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)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    Contributor in writing of such claim, and b) allow the Commercial Contributor
    to control, and cooperate with the Commercial Contributor in, the defense
    and any related settlement negotiations. The Indemnified Contributor may participate
    in any such claim at its own expense.
    
    For example, a Contributor might include the Program in a commercial product
    offering, Product X. That Contributor is then a Commercial Contributor. If
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

        assert such claim is referred to as "Participant") alleging that the
        Participant Software (meaning the Contributor Version where the
        Participant is a Contributor or the Original Software where the
        Participant is the Initial Developer) directly or indirectly
        infringes any patent, then any and all rights granted directly or
        indirectly to You by such Participant, the Initial Developer (if the
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  10. maven-core/src/test/projects/lifecycle-listener/lifecycle-participant-reactor-dependency-injection/module-b/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>lifecycle-participant-reactor-dependency-injection</groupId>
        <artifactId>parent</artifactId>
        <version>1.0</version>
      </parent>
    
      <artifactId>module-b</artifactId>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 29 12:40:19 GMT 2014
    - 257 bytes
    - Viewed (0)
Back to top