Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,423 for classy (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

                    dependsOn group: 'org.test', artifact: 'projectB', version: '1.0', 'classifier': 'classy'
                }
                'org.test:projectB:1.0' {
                    withModule {
                        undeclaredArtifact(type: 'jar', classifier: 'classy')
                    }
                }
            }
            buildFile << """
    
    class AssertingRule implements ComponentMetadataRule {
    
        void execute(ComponentMetadataContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

          <component group="org" name="bar" version="1.2">
             <artifact name="bar-1.2.jar">
                <sha1 value="9876"/>
                <sha512 value="123def"/>
             </artifact>
             <artifact name="bar-1.2-classy.jar">
                <sha512 value="5678abcd"/>
             </artifact>
          </component>
          <component group="org" name="baz" version="1.4">
             <artifact name="baz-1.4.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

            given:
            declareChecksum("org:foo:1.0", "sha1", "abc")
            declareChecksumOfArtifact("org", "foo", "1.0", "zip", "zip", null, "sha256", "def")
            declareChecksumOfArtifact("org", "foo", "1.0", "jar", "jar", "classy", "sha1", "123")
    
            when:
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

            """
        }
    
        def "can attach an archive task provider as an artifact"() {
            createBuildScripts("""
                def customJar = tasks.register("myJar", Jar) {
                    archiveClassifier = 'classy'
                }
                publications {
                    mavenCustom(MavenPublication) {
                        artifact(customJar)
                    }
                }
            """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top