Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for p2 (0.13 sec)

  1. maven-core/src/test/resources/imports-repo/t01/p0/p4/pom.xml

      <name>p4</name>
      <version>1.0</version>
      <scm>
        <url>scm-url</url>
      </scm>
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>maven</groupId>
            <artifactId>p2</artifactId>
            <version>1.0</version>
            <type>pom</type>
            <scope>import</scope>
          </dependency>
          <dependency>
            <groupId>maven</groupId>
            <artifactId>p3</artifactId>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 1.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            return result;
        }
    
        private static boolean policyEquals(RepositoryPolicy p1, RepositoryPolicy p2) {
            if (p1 == p2) {
                return true;
            }
            // update policy doesn't affect contents
            return p1.isEnabled() == p2.isEnabled() && Objects.equals(p1.getChecksumPolicy(), p2.getChecksumPolicy());
        }
    
        private static boolean repositoryEquals(RemoteRepository r1, RemoteRepository r2) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/imports-repo/t01/p0/pom.xml

            <artifactId>maven-test-a</artifactId>
            <version>1.0</version>
          </dependency>
        </dependencies>
      </dependencyManagement>
      <modules>
        <module>p1</module>
        <module>p2</module>
        <module>p3</module>
        <module>p4</module>
      </modules>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 612 bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

        // ----------------------------------------------------------------------
        //
        // p4 inherits from p3
        // p3 inherits from p2
        // p2 inherits from p1
        // p1 inherits from p0
        // p0 inherits from super model
        //
        // or we can show it graphically as:
        //
        // p4 ---> p3 ---> p2 ---> p1 ---> p0 --> super model
        //
        // ----------------------------------------------------------------------
    
        @Test
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            ArtifactRepository repo = getRepo("a");
    
            Mirror mirrorA = newMirror("a", "a", null, "http://a");
            Mirror mirrorB = newMirror("b", "a", "p2", "http://b");
    
            Mirror mirrorC = newMirror("c", "*", null, "http://c");
            Mirror mirrorD = newMirror("d", "*", "p2", "http://d");
    
            assertSame(mirrorA, mirrorSelector.getMirror(repo, Arrays.asList(mirrorA)));
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java

            File localRepo = getLocalRepositoryPath();
    
            File pom0 = new File(localRepo, "p0/pom.xml");
            File pom0Basedir = pom0.getParentFile();
            File pom2 = new File(pom0Basedir, "p2/pom.xml");
    
            // load the child project, which inherits from p0...
            MavenProject project0 = getProjectWithDependencies(pom0);
            MavenProject project2 = getProjectWithDependencies(pom2);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 5K bytes
    - Viewed (0)
  7. maven-compat/src/test/resources/inheritance-repo/t00/maven/poms/p3-1.0.pom

    <project>
      <parent>
        <artifactId>p2</artifactId>
        <groupId>maven</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven</groupId>
      <artifactId>p3</artifactId>
      <packaging>pom</packaging>
      <name>p3</name>
      <version>1.0</version>
      <inceptionYear>2000</inceptionYear>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 335 bytes
    - Viewed (0)
  8. maven-compat/src/test/resources/inheritance-repo/t01/maven.t01/poms/p3-1.0.pom

    <project>
      <parent>
        <artifactId>p2</artifactId>
        <groupId>maven.t01</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven.t01</groupId>
      <artifactId>p3</artifactId>
      <packaging>pom</packaging>
      <name>p3</name>
      <version>1.0</version>
      <organization>
        <name>p3-org</name>
      </organization>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 365 bytes
    - Viewed (0)
  9. maven-core/plugin-manager.txt

    * Along with this comes the testing strategies that make this work
    * The repository model where plugins can be stored and cataloged
    * Bridging this into an OSGi system: if this could be done then we can basically take over p2
    
    TODO
    
    - dealing with processing of input and adapting GAVs before searching i.e. plugin groups in Maven and default searching
    - how to deal with resolution from different places like local/remote/workspace
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
Back to top