Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Fortin (0.17 sec)

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

         *
         * @return All collected projects.
         *
         * @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/resources/projects/project.xml

          <roles>
            <role>Founder</role>
            <role>Release Manager</role>
          </roles>
        </developer>
      </developers>
    
      <contributors>
        <contributor>
          <name>Martin van dem Bemt</name>
          <email>******@****.***</email>
        </contributor>
      </contributors>
    
      <dependencies>
    
        <dependency>
          <groupId>g1</groupId>
          <artifactId>d1</artifactId>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

          <id>donaldp</id>
          <name>Peter Donald</name>
          <email>donaldp at apache dot org</email>
          <organization></organization>
        </developer>
        <developer>
          <id>costin</id>
          <name>Costin Manolache</name>
          <email>costin at apache dot org</email>
          <organization>Apache Software Foundation</organization>
        </developer>
        <developer>
          <id>rsitze</id>
          <name>Richard Sitze</name>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment.xml

          <roles>
            <role>Founder</role>
            <role>Release Manager</role>
          </roles>
        </developer>
      </developers>
    
      <contributors>
        <contributor>
          <name>Martin van dem Bemt</name>
          <email>******@****.***</email>
        </contributor>
      </contributors>
    
      <dependencies>
    
        <dependency>
          <groupId>g1</groupId>
          <artifactId>d1</artifactId>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 3.6K bytes
    - Viewed (0)
  5. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

        /**
         * Test <a href="https://issues.apache.org/jira/browse/MNG-5568">MNG-5568</a> edge case
         * which was showing transitive inconsistency: since A &gt; B and B &gt; C then we should have A &gt; C
         * otherwise sorting a list of ComparableVersions() will in some cases throw runtime exception;
         * see Netbeans issues <a href="https://netbeans.org/bugzilla/show_bug.cgi?id=240845">240845</a> and
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

            final int pos = url.indexOf(':');
    
            if (pos == -1) {
                return "";
            }
            return url.substring(0, pos).trim();
        }
    
        /**
         * Derive the path portion of the given URL.
         *
         * @param url the repository URL
         * @return the basedir of the repository
         * TODO need to URL decode for spaces?
         */
        private String basedir(String url) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                    }
                }
                return buf.toString();
            }
        }
    
        public ArtifactVersion matchVersion(List<ArtifactVersion> versions) {
            // TODO could be more efficient by sorting the list and then moving along the restrictions in order?
    
            ArtifactVersion matched = null;
            for (ArtifactVersion version : versions) {
                if (containsVersion(version)) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/fully-populated-child.xml

          <roles>
            <role>Founder</role>
            <role>Release Manager</role>
          </roles>
        </developer>
      </developers>
    
      <contributors>
        <contributor>
          <name>Martin van dem Bemt</name>
          <email>******@****.***</email>
        </contributor>
      </contributors>
    
      <dependencies>
    
        <dependency>
          <groupId>g1</groupId>
          <artifactId>d1</artifactId>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.7K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

    import static org.hamcrest.Matchers.hasItem;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertThrows;
    
    /**
     * Test sorting projects by dependencies.
     *
     */
    class ProjectSorterTest {
        private Parent createParent(MavenProject project) {
            return createParent(project.getGroupId(), project.getArtifactId(), project.getVersion());
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

    to any such program or work, and a "work based on the Program" means
    either the Program or any derivative work under copyright law: that is
    to say, a work containing the Program or a portion of it, either
    verbatim or with modifications and/or translated into another language.
    (Hereinafter, translation is included without limitation in the term
    "modification".) Each licensee is addressed as "you".
    
    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)
Back to top