Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 489 for JAR (0.02 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

                addTrustedArtifact("group", "module", "1.0", null, true)
                addTrustedArtifact("group", "module", "1.1", "somefile.jar", false)
                addTrustedArtifact("group2", "module2", "1.2", "somefile.jar", true)
                addTrustedArtifact(null, "module2", null, "somefile.jar", true)
            }
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

                allprojects {
                    task lib
                    task jar
                }
                dependencies {
                    compile project(':child')
                    compile files('main-lib.jar') { builtBy lib }
                }
                project(':child') {
                    artifacts {
                        compile file: file('child.jar'), builtBy: jar
                    }
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

            when:
            run "signMavenJavaPublication"
    
            then:
            executedAndNotSkipped(":signMavenJavaPublication")
    
            and:
            file("build", "libs", "sign-3.0.jar.asc").text
            file("build", "libs", "sign-3.0.jar").text
        }
    
        def "component can still be mutated after signing is configured for an Ivy publication"() {
            given:
            buildFile << """
                apply plugin: 'ivy-publish'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedArtifactOrderingIntegrationTest.groovy

                        common files("b-lib.jar")
                    }
                }
                project(":c") {
                    dependencies {
                        common "org.test:C:1.0"
                        common files("c-lib.jar")
                    }
                }
    """
    
            then:
            checkOrdered(['root-lib.jar', modA, 'a.jar', 'a-lib.jar', modB, 'b.jar', 'b-lib.jar', 'c.jar', 'c-lib.jar', modC, modD])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

                        }
                    }
                }
            """
    
            and:
            module.jar.expectPutBroken()
            module.jar.expectPutBroken()
            module.jar.expectPut()
            module.jar.sha1.expectPut()
            module.jar.sha256.expectPut()
            module.jar.sha512.expectPut()
    
            module.ivy.expectPutBroken()
            module.ivy.expectPut(HttpStatus.CREATED_201)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants('projectA-1.0.jar', 'projectB-1.0.jar')
            def snapshot = file('libs/projectA-1.0.jar').snapshot()
    
            when:
            server.resetExpectations()
            and:
            run 'retrieve'
    
            then:
            file('libs/projectA-1.0.jar').assertHasNotChangedSince(snapshot)
        }
    
    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/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

        /**
         * Searches the specified class path for a 'scala-library' Jar, and returns a class path
         * containing a corresponding (same version) 'scala-compiler' Jar and its dependencies.
         *
         * <p>The returned class path may be empty, or may fail to resolve when asked for its contents.
         *
         * @param classpath a class path containing a 'scala-library' Jar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

            libraries[0].assertHasSource('REPO_DIR/coolGroup/niceArtifact/1.0/niceArtifact-1.0-sources.jar')
            libraries[1].assertHasJar('LIB_DIR/dep.jar')
    
            //javadoc is not substituted
            libraries[0].assertHasJavadoc(file("maven-repo/coolGroup/niceArtifact/1.0/niceArtifact-1.0-javadoc.jar"))
        }
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

        }
    
        def "resolves multiple artifacts of the same type"() {
            given:
            module.artifact(type: "source", classifier: "other-sources", ext: "jar", conf: "sources")
            module.artifact(type: "javadoc", classifier: "other-javadoc", ext: "jar", conf: "javadoc")
            module.publish()
    
            fixture.expectSourceArtifact("my-sources")
                    .expectSourceArtifact("other-sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

        def "classpath can contain badly formed jar"() {
            given:
            file("broken.jar") << "not a jar"
            buildFile << """
                buildscript { dependencies { classpath files("broken.jar") } }
            """
    
            when:
            succeeds()
    
            then:
            noExceptionThrown()
        }
    
        def "classpath can contain signed jar"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top