Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 423 for groupId2 (0.07 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

        void testShouldUseCompileScopeIfDependencyScopeEmpty() throws Exception {
            /*
            String groupId = "org.apache.maven";
            String artifactId = "maven-model";
    
            Dependency dep = new Dependency();
    
            dep.setGroupId( groupId );
            dep.setArtifactId( artifactId );
            dep.setVersion( "2.0-alpha-3" );
    
            Model model = new Model();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/resources/poms/depmgmt/distant-import.xml

        <modelVersion>4.1.0</modelVersion>
    
        <groupId>test</groupId>
        <artifactId>other</artifactId>
        <version>0.1-SNAPSHOT</version>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.junit</groupId>
                    <artifactId>bom</artifactId>
                    <version>0.1</version>
                    <type>pom</type>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 768 bytes
    - Viewed (0)
  3. compat/maven-compat/src/test/resources/inheritance-repo/t06/p0/pom.xml

            <groupId>maven-test</groupId>
            <artifactId>t06-b</artifactId>
            <version>1.1</version>
          </dependency>
          <dependency>
            <groupId>maven-test</groupId>
            <artifactId>t06-c</artifactId>
            <version>1.0</version>
          </dependency>
          <dependency>
            <groupId>maven-test</groupId>
            <artifactId>t06-d</artifactId>
            <version>1.2</version>
            <scope>test</scope>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 992 bytes
    - Viewed (0)
  4. module.xml

    		<delete dir="${modules.dir}" />
    		<mkdir dir="${modules.dir}" />
    
    		<!-- analysis-common -->
    		<antcall target="install.module">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="module.groupId" value="org/codelibs/opensearch/module" />
    			<param name="module.name.prefix" value="" />
    			<param name="module.name" value="analysis-common" />
    			<param name="module.version" value="${opensearch.version}" />
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 25 12:43:59 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. guava/pom.xml

        </dependency>
        <dependency>
          <groupId>org.checkerframework</groupId>
          <artifactId>checker-qual</artifactId>
        </dependency>
        <dependency>
          <groupId>com.google.errorprone</groupId>
          <artifactId>error_prone_annotations</artifactId>
        </dependency>
        <dependency>
          <groupId>com.google.j2objc</groupId>
          <artifactId>j2objc-annotations</artifactId>
        </dependency>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 18:53:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. compat/maven-resolver-provider/src/test/resources/repo/ut/simple/parent/1.0/parent-1.0.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>ut.simple</groupId>
      <artifactId>parent</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <name>Simple Unit Test Parent</name>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>ut.simple</groupId>
            <artifactId>dependency</artifactId>
            <version>1.0</version>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ArtifactModelSource.java

        }
    
        public ArtifactModelSource(Path path, String groupId, String artifactId, String version) {
            super(path);
            this.groupId = groupId;
            this.artifactId = artifactId;
            this.version = version;
            this.hashCode = Objects.hash(groupId, artifactId, version);
        }
    
        public String getGroupId() {
            return groupId;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. impl/maven-cli/pom.xml

        <dependency>
          <groupId>com.google.inject</groupId>
          <artifactId>guice</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-jline</artifactId>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
          <groupId>commons-cli</groupId>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 13:40:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. compat/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 (empty(artifactId)) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The artifactId cannot be empty.");
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/test/resources/poms/validation/bad-plugin-dependency-version.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-it-plugin</artifactId>
            <version>1.0</version>
            <dependencies>
              <dependency>
                <groupId>test</groupId>
                <artifactId>a</artifactId>
                <version>0.1</version>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top