Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for relativePath (0.19 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                            // where MacOS would kill the Android Studio process right after start, issue: https://github.com/gradle/gradle-profiler/issues/469
                            relativePath = RelativePath(true, *relativePath.segments.drop(1).toTypedArray())
                        }
                    }
                    into(layout.buildDirectory.dir("android-studio"))
                }
            }
        }
    }
    
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 22 13:46:27 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  2. maven-core/src/test/projects/project-builder/MNG-6983/pom.xml

        <modelVersion>4.0.0</modelVersion>
    
        <parent>
            <groupId>org.example</groupId>
            <artifactId>parent</artifactId>
            <version>0.0.1-SNAPSHOT</version>
            <relativePath>./parent-pom.xml</relativePath>
        </parent>
    
        <artifactId>child</artifactId>
        <packaging>jar</packaging>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>${codehaus.groupId}</groupId>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Oct 03 10:51:51 GMT 2020
    - 753 bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/url-append/child/pom.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven.its.mng2006</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
        <relativePath>../parent/pom.xml</relativePath>
      </parent>
    
      <artifactId>child</artifactId>
      <name>Child Project</name>
      <description>
        Test that inheritance of those URLs which automatically append the child's artifact id take the child's
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/consumer/simple/simple-parent/simple-testutils/pom.xml

      <parent>
        <groupId>org.sonatype.mavenbook.multi</groupId>
        <artifactId>utils-parent</artifactId>
        <relativePath>../utils-parent/pom.xml</relativePath>
      </parent>
      <artifactId>simple-testutils</artifactId>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml

      <modelVersion>4.0.0</modelVersion>
        <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-parent</artifactId>
        <version>11</version>
        <relativePath>maven-parent.xml</relativePath>
      </parent>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven</artifactId>
      <version>3.0-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <properties>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Oct 27 10:08:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/parent-inheritance/pom.xml

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <relativePath>child3.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-2</artifactId>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Aug 05 21:42:06 GMT 2009
    - 279 bytes
    - Viewed (0)
  7. maven-compat/src/test/resources/inheritance-repo/t12scm/maven/p1/1.0/p1-1.0.pom

    <project>
      <parent>
        <artifactId>p0</artifactId>
        <groupId>maven</groupId>
        <version>1.0</version>
        <relativePath>../../pom.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>p1</artifactId>
    
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 247 bytes
    - Viewed (0)
  8. maven-compat/src/test/resources/inheritance-repo/t12scm/p0/modules/p1/pom.xml

    <project>
      <parent>
        <artifactId>p0</artifactId>
        <groupId>maven</groupId>
        <version>1.0</version>
        <relativePath>../../pom.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>p1</artifactId>
    
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 247 bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom

      <parent>
        <artifactId>plexus</artifactId>
        <groupId>org.codehaus.plexus</groupId>
        <version>1.0.11</version>
        <relativePath>../pom/pom.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>plexus-utils</artifactId>
      <name>Plexus Common Utilities</name>
      <version>1.4.5</version>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 2.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-order/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.sonatype.nexus</groupId>
        <artifactId>nexus-parent</artifactId>
        <version>8-SNAPSHOT</version>
        <relativePath>nexus-parent.xml</relativePath>
      </parent>
    
      <groupId>org.sonatype.nexus</groupId>
      <artifactId>nexus-indexer</artifactId>
      <version>1.1.3-SNAPSHOT</version>
    
      <build>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jun 01 10:59:19 GMT 2009
    - 676 bytes
    - Viewed (0)
Back to top