Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for classy (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

            m1.getArtifact(type: '', ext: '', classifier: 'classy').expectGet()
    
            run 'show'
    
            then:
            outputContains("files: [test-1.0, test-1.0, test-1.0-classy]")
            outputContains("display-names: [test-1.0 (org:test:1.0), test-1.0 (org:test:1.0), test-1.0-classy (org:test:1.0)]")
            outputContains("ids: [test-1.0 (org:test:1.0), test-1.0 (org:test:1.0), test-1.0-classy (org:test:1.0)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

            child.publish()
    
            buildFile << """
    repositories {
        maven { url '${mavenRepo.uri}' }
    }
    configurations { compile }
    dependencies { compile 'org:child:1.0' }
    task libs { doLast { assert configurations.compile.files*.name == ['child-1.0.jar', 'child_dep-1.7.jar', 'typed_dep-1.8.bar', 'classified_dep-1.9-classy.jar', 'fq_dep-2.1-classy.bar'] } }
    """
    
            expect:
            succeeds 'libs'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/compatibility/ArtifactAndClassifierCompatibilityIntegrationTest.groovy

                    expectGetMetadata()
                    expectGetArtifact(classifier: 'classy')
                }
            }
            succeeds "checkDep"
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org:foo:1.0") {
                        module("org:bar:1.0") {
                            artifact(classifier: 'classy')
                        }
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

                        sha512: getChecksum(foo, "sha512", "pom")
                    )
                }
                artifact("foo-1.0-classy.jar") {
                    declaresChecksums(
                        sha1: getChecksum(foo, "sha1", "jar", "classy"),
                        sha512: getChecksum(foo, "sha512", "jar", "classy")
                    )
                }
                artifact("foo-1.0.zip") {
                    declaresChecksums(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

            'jar' | 'jar' | 'classy'
            'zip' | 'zip' | null
            'jar' | 'zip' | 'classy'
        }
    
        def "artifact selection context has information about requested artifacts"() {
            def artifact = Stub(IvyArtifactName) {
                getName() >> 'foo'
                getExtension() >> 'jar'
                getType() >> 'type'
                getClassifier() >> 'classy'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

    dependencies {
        compile 'group:projectA:1.2@jar'
        compile 'group:projectB:1.2:classy@jar'
    }
    task retrieve(type: Sync) {
        into 'libs'
        from configurations.compile
    }
    """
    
            when:
            projectA.pom.expectGet()
            projectA.artifact.expectGet()
            projectB.pom.expectGet()
            projectB.artifact(classifier: 'classy').expectGet()
    
            then:
            succeeds('retrieve')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    classpath = files()
                }
                dependencies {
                    implementation "org:foo:1.0"
                    implementation "org:foo:1.0:classy"
                }
    
                publishing {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
                    publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

                        artifact source: customJar, classifier: "classy"
                    }
                }
    """)
            when:
            succeeds 'publish'
    
            then:
            module.assertPublished()
            module.assertArtifactsPublished("ivy-2.4.xml", "ivyPublish-2.4-classy.jar")
            module.parsedIvy.expectArtifact("ivyPublish").hasAttributes("jar", "jar", null, "classy")
    
            and:
            resolveArtifacts(module)  {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

            coordinates1.revision.set("rev")
            def artifact1 = new FileBasedIvyArtifact(new File("foo.txt"), coordinates1, DefaultTaskDependencyFactory.withNoAssociatedProject())
            artifact1.classifier = "classy"
    
            def coordinates2 = TestUtil.objectFactory().newInstance(IvyPublicationCoordinates)
            coordinates2.organisation.set("")
            coordinates2.module.set("")
            coordinates2.revision.set("")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

            when:
            MavenArtifact mavenArtifact = parser.parseNotation(source: publishArtifact, extension: "ext", classifier: "classy")
    
            then:
            mavenArtifact.file == publishArtifact.file
            mavenArtifact.extension == "ext"
            mavenArtifact.classifier == "classy"
    
            and:
            mavenArtifact.buildDependencies.getDependencies(task) == dependencies
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top