Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for order (0.19 sec)

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

         *
         * @since 3.5.0
         */
        List<MavenProject> getAllProjects();
    
        /**
         * Gets all projects in their intended build order, i.e. after topologically sorting the projects according to their
         * interdependencies.
         *
         * @return The projects in the build order, never {@code null}.
         */
        List<MavenProject> getSortedProjects();
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

            assertFalse(result.hasExceptions(), result.getExceptions().toString());
    
            List<String> order = new ArrayList<>();
            for (MavenProject project : result.getTopologicallySortedProjects()) {
                order.add(project.getArtifactId());
            }
            return order;
        }
    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/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml

                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
    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)
  4. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml

                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml

              <version>2.1-SNAPSHOT</version>
              <inherited>true</inherited>
              <configuration>
                <listParam>
                  <!-- NOTE: These values are deliberately not in alpha order! -->
                  <listParam>PARENT-1</listParam>
                  <listParam>PARENT-3</listParam>
                  <listParam>PARENT-2</listParam>
                  <listParam>PARENT-4</listParam>
                </listParam>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  6. maven-core/plugin-manager.txt

    h4. Generation of plugin metadata and packaging
    
    To create the packaging for a plugin a special Maven packaging would be created with an accompanying life-cycle in order to create the plugin metadata required and create an archive of the plugin that can be consumed at runtime.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                    result = new ArrayList<>(selectedProjects);
    
                    result = includeAlsoMakeTransitively(result, request, graph);
    
                    // Order the new list in the original order
                    List<MavenProject> sortedProjects = graph.getSortedProjects();
                    result.sort(comparing(sortedProjects::indexOf));
                }
            }
    
            return result;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      2005-04-29
    
    Abstract
    
      We're moving toward integrating mojos as first-class plexus components, while
      at the same time avoiding introducing required plexus dependencies into the
      mojo development model.
    
      In order to really achieve this, we need mojo configurations (which are
      provided both in terms of static expressions that are just looked up, and
      in terms of user-provided configuration from properties or the POM).
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 30 15:20:35 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

            // file. Ideally, we'd do full pattern-evaluation against the sysprops, but this
            // is a first step. There are several replacements below, in order to normalize
            // the path character before we operate on the string as a regex input, and
            // in order to avoid surprises with the File construction...
            // -------------------------------------------------------------------------------------
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/profile-injected-dependencies/pom.xml

      <version>0.1-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-1412</name>
      <description>
        Check that dependencies are available in classpath in same order as declared in POM.
      </description>
    
      <dependencies>
        <!-- model dependencies first, in the order given -->
        <dependency>
          <groupId>org.apache.maven.its.mng1412</groupId>
          <artifactId>a</artifactId>
          <version>0.1</version>
        </dependency>
    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)
Back to top