Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 882 for grouping (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/factory/ArtifactFactory.java

        Artifact createParentArtifact(String groupId, String artifactId, String version);
    
        Artifact createPluginArtifact(String groupId, String artifactId, VersionRange versionRange);
    
        Artifact createProjectArtifact(String groupId, String artifactId, String version, String scope);
    
        Artifact createExtensionArtifact(String groupId, String artifactId, VersionRange versionRange);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.9K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

        }
    
        private void validateIdentity() {
            if (empty(groupId)) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The groupId cannot be empty.");
            }
    
            if (artifactId == null) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The artifactId cannot be empty.");
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

            <groupId>org.apache.maven</groupId>
            <artifactId>maven-profile</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-model</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>org.apache.maven</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  4. maven-core/pom.xml

        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-artifact</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-plugin-api</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-model-builder</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  5. maven-compat/src/test/resources/inheritance-repo/t08/p0/pom.xml

            <groupId>maven-test</groupId>
            <artifactId>t08-b</artifactId>
            <version>1.1</version>
          </dependency>
          <dependency>
            <groupId>maven-test</groupId>
            <artifactId>t08-c</artifactId>
            <version>1.0</version>
          </dependency>
          <dependency>
            <groupId>maven-test</groupId>
            <artifactId>t08-d</artifactId>
            <version>1.2</version>
            <scope>test</scope>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 992 bytes
    - Viewed (0)
  6. maven-core/src/test/resources/imports-repo/t01/p0/p1/pom.xml

        <groupId>maven</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven</groupId>
      <artifactId>p1</artifactId>
      <packaging>pom</packaging>
      <name>p1</name>
      <version>1.0</version>
      <scm>
        <url>scm-url</url>
      </scm>
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>maven-test</groupId>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 1.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-containers/1.0-alpha-32/plexus-containers-1.0-alpha-32.pom

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.codehaus.plexus</groupId>
        <artifactId>plexus</artifactId>
        <version>1.0.11</version>
      </parent>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-containers</artifactId>
      <packaging>pom</packaging>
      <name>Parent Plexus Container POM</name>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/transform/before.pom

            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-ear-plugin</artifactId>
              <version>3.3.0</version>
              <configuration>
                <modules>
                  <module>
                    <test>test</test>
                  </module>
                  <jarModule>
                    <groupId>artifactGroupId</groupId>
                    <artifactId>artifactId</artifactId>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Sep 14 07:51:37 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  9. maven-compat/src/test/resources/projects/scope/transitive-test-dep.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-test</groupId>
      <artifactId>scope-test</artifactId>
      <version>1.0</version>
      <dependencies>
    
        <dependency>
          <groupId>maven-test-test</groupId>
          <artifactId>scope-default</artifactId>
          <version>1.0</version>
        </dependency>
    
        <dependency>
          <groupId>maven-test-test</groupId>
          <artifactId>scope-test</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 1.6K bytes
    - Viewed (0)
  10. maven-compat/src/test/resources/projects/scope/project-with-scoped-dependencies.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven</groupId>
      <artifactId>maven-project-test</artifactId>
      <name>Maven</name>
      <version>1.0-beta-9</version>
      <dependencies>
    
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>scope-default</artifactId>
          <version>1.0</version>
        </dependency>
    
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>scope-test</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 2.7K bytes
    - Viewed (0)
Back to top