Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 233 for corev1 (0.73 sec)

  1. maven-core/src/test/resources/withActiveByDefaultProfile-pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>maven</groupId>
      <artifactId>maven-core</artifactId>
      <version>2.0-SNAPSHOT</version>
    
      <name>Maven</name>
    
      <profiles>
        <profile>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <id>test</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/a/0.1/a-0.1.pom

      <groupId>org.apache.maven.its.mng3906</groupId>
      <artifactId>a</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <distributionManagement>
        <repository>
          <id>maven-core-it</id>
          <url>file:///${basedir}/repo</url>
        </repository>
      </distributionManagement>
    
      <properties>
        <maven.test.skip>true</maven.test.skip>
        <updateReleaseInfo>true</updateReleaseInfo>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 02 16:35:38 UTC 2010
    - 1.6K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/b/0.1/b-0.1.pom

      <groupId>org.apache.maven.its.mng3906</groupId>
      <artifactId>b</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <distributionManagement>
        <repository>
          <id>maven-core-it</id>
          <url>file:///${basedir}/repo</url>
        </repository>
      </distributionManagement>
    
      <properties>
        <maven.test.skip>true</maven.test.skip>
        <updateReleaseInfo>true</updateReleaseInfo>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 02 16:35:38 UTC 2010
    - 1.6K bytes
    - Viewed (0)
  4. maven-model-builder/pom.xml

      <description>The effective model builder, with inheritance, profile activation, interpolation, ...</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-spi</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. maven-bom/pom.xml

            <artifactId>maven-builder-support</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-core</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-embedder</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

            File f = getFileForClasspathResource("canonical-pom.xml");
            MavenProject projectToClone = getProject(f);
    
            MavenProject clonedProject = projectToClone.clone();
            assertEquals("maven-core", clonedProject.getArtifactId());
            Map<?, ?> clonedMap = clonedProject.getManagedVersionMap();
            assertNotNull(clonedMap, "ManagedVersionMap not copied");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/canonical-pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>maven</groupId>
      <artifactId>maven-core</artifactId>
      <version>2.0-SNAPSHOT</version>
    
      <name>Maven</name>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-plexus-plugin</artifactId>
            <version>1.0</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/transform/jar/before.pom

                <version>5.10.2</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.assertj</groupId>
                <artifactId>assertj-core</artifactId>
                <version>3.25.3</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
        <profiles>
            <profile>
                <id>release</id>
                <build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-core</artifactId>
      <version>2.0-SNAPSHOT</version>
      <packaging>jar</packaging>
    
      <name>Maven</name>
      <inceptionYear>2001</inceptionYear>
    
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  10. api/maven-api-spi/pom.xml

        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-model</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-core</artifactId>
        </dependency>
      </dependencies>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top