Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,272 for artifactC (0.18 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/AbstractModuleDependencySpec.groovy

        }
    
        void "can add artifacts"() {
            def artifact1 = Mock(DependencyArtifact)
            def artifact2 = Mock(DependencyArtifact)
    
            when:
            dependency.addArtifact(artifact1)
            dependency.addArtifact(artifact2)
    
            then:
            dependency.artifacts.size() == 2
            dependency.artifacts.contains(artifact1)
            dependency.artifacts.contains(artifact2)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

            def attrs = ImmutableAttributes.EMPTY
            def attrsPlusFormat = concat(attrs, ["custom-default": "123"])
            def artifact1 = Stub(ComponentArtifactMetadata)
            def artifactName1 = Stub(IvyArtifactName)
            def artifact2 = Stub(ComponentArtifactMetadata)
            def artifactName2 = Stub(IvyArtifactName)
    
            given:
            artifact1.name >> artifactName1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

                        getArtifacts() >> artifacts2
                    }
                }]
            }
    
            def artifact1 = Stub(TaskProvider)
            def artifact2 = Stub(File)
    
            when:
            services.replaceArtifacts(config, artifact1, artifact2)
    
            then:
            1 * outgoing.getArtifacts() >> artifacts
            1 * artifacts.clear()
            1 * artifacts2.clear()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-expected.xml

        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <groupId>inheritance</groupId>
      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
      <description>Flat directory structure case: module = ../child-artifact-id + child directory path != child-artifact-id</description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/artifact-handlers.apt

    ~~ under the License.
    
     ---
     Legacy Artifact Handlers Reference
     ---
     Hervé Boutemy
     ---
     2013-08-02
     ---
    
    Legacy Artifact Handlers Reference
    
      Maven 3 artifact handlers (see {{{../maven-artifact/apidocs/org/apache/maven/artifact/handler/ArtifactHandler.html} API}})
      define for each {{{../maven-model/maven.html#class_dependency}dependency type}} information on the artifact
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

            def requestedModule = mavenHttpRepo.module("groupA", "artifactA", "1.2").publish()
            requestedModule.pomFile.text = """
    <project>
        <groupId>groupA</groupId>
        <artifactId>artifactA</artifactId>
        <version>1.2</version>
        <dependencies>
            <dependency>
                <groupId>groupB</groupId>
                <artifactId>artifactB</artifactId>
            </dependency>
        </dependencies>
        <profiles>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-parent.xml

      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Flat directory structure case: module = ../child-artifact-id + child directory path != child-artifact-id</description>
    
      <modules>
        <module>../child-artifact-id</module><!-- use child artifact id, even if different from directory -->
      </modules>
    
    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-resolver-provider/src/test/resources/repo/ut/simple/artifact/1.0/artifact-1.0.pom

      <parent>
        <groupId>ut.simple</groupId>
        <artifactId>parent</artifactId>
        <version>1.0</version>
      </parent>
    
      <artifactId>artifact</artifactId>
    
      <name>Simple Unit Test Artifact</name>
    
      <dependencies>
        <dependency>
          <groupId>ut.simple</groupId>
          <artifactId>dependency</artifactId>
        </dependency>
        <dependency>
          <groupId>ut.simple</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    String, org.apache.maven.artifact.versioning.VersionRange, String, String, String, String); public org.apache.maven.artifact.Artifact createDependencyArti(String, String, org.apache.maven.artifact.versioning.VersionRange, String, String, String, String, boolean); public org.apache.maven.artifact.Artifact createBuildArtifact(String, String, String, String); public org.apache.maven.artifact.Artifact createProjectArtifac(String, String, String); public org.apache.maven.artifact.Artifact createParentArtifact(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            allArtifacts.empty
    
            when:
            masterParent1.artifacts << artifact("p1-1")
            masterParent1Parent1.artifacts << artifact("p1p1-1")
            masterParent1Parent2.artifacts << artifact("p1p2-1")
            masterParent2.artifacts << artifact("p2-1")
            masterParent2Parent1.artifacts << artifact("p2p1-1")
            masterParent2Parent2.artifacts << artifact("p2p2-1")
    
            then:
            allArtifacts.size() == 6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top