Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 179 for jar1 (0.04 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                           assert configurations._compileFree.collect { it.name } == ['b-transitive.jar', 'c-foo.jar']
                        }
                    }
                    task checkPaid(dependsOn: configurations._compilePaid) {
                        doLast {
                           assert configurations._compilePaid.collect { it.name } == ['b-transitive.jar', 'c-bar.jar']
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            when: 'the generated task is executed'
            run 'clean', 'build', 'sourcesJar'
    
            then: 'the sources jar is generated'
            targetDir.file('build/libs/util-2.5.jar').exists()
            targetDir.file('build/libs/util-2.5-sources.jar').exists()
        }
    
        def 'testsJar'() {
            def rootBuildFile = dslFixtureFor(scriptDsl).getBuildFile()
    
            when: 'build is initialized'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

                    'org.gradle.libraryelements': of('jar', 'jar'),
                    'org.gradle.usage': of('java-runtime', 'java-runtime'),
                    'org.gradle.jvm.environment': of('', 'standard-jvm')
                ])}
    
    ---------------------
    Unselected Variant(s)
    ---------------------
    
    ${variantOf('apiElements', [
                    artifactType: of('jar', ''),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

    import java.util.Map;
    import java.util.jar.Attributes;
    import java.util.jar.JarFile;
    import java.util.jar.Manifest;
    import java.util.stream.Stream;
    import java.util.zip.ZipEntry;
    
    import org.apache.maven.api.JavaPathType;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Information about the modules contained in a path element.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

    2 artifacts failed verification:
      - bar-1.0.jar (org:bar:1.0) from repository ivy
      - foo-1.0.jar (org:foo:1.0) from repository maven"""
    
                whenVerbose """Dependency verification failed for configuration ':compileClasspath':
      - On artifact bar-1.0.jar (org:bar:1.0) in repository 'ivy': expected a 'sha1' checksum of 'also invalid' but was '${getChecksum(bar, "sha1")}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                    apply plugin: 'base'
                    task jar(type: Jar) {
                        destinationDirectory = buildDir
                        archiveFileName = 'lib.jar'
                        doLast {
                            ${server.callFromBuild('jar')}
                        }
                    }
                    artifacts {
                        compile jar
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    include::sample[dir="snippets/files/archivesWithJavaPlugin/groovy",files="build.gradle[tags=create-uber-jar-example]"]
    ====
    
    See link:{groovyDslPath}/org.gradle.api.tasks.bundling.Jar.html[Jar] for more details on the configuration options available to you.
    And note that you need to use `archiveClassifier` rather than `archiveAppendix` here for correct publication of the JAR.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            expect:
            withBuildCache().run "jar" assertTaskNotSkipped ":compileJava" assertTaskNotSkipped ":jar"
    
            when:
            file("src/main/java/Hello.java").text = CHANGED_HELLO_WORLD
            then:
            withBuildCache().run "jar" assertTaskNotSkipped ":compileJava" assertTaskNotSkipped ":jar"
    
            when:
            file("src/main/java/Hello.java").text = ORIGINAL_HELLO_WORLD
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar_test.go

    	queries     []query  // Queries to test the Jar.Cookies method
    }
    
    // query contains one test of the cookies returned from Jar.Cookies.
    type query struct {
    	toURL string // the URL in the Cookies call
    	want  string // the expected list of cookies (order matters)
    }
    
    // run runs the jarTest.
    func (test jarTest) run(t *testing.T, jar *Jar) {
    	now := tNow
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                        to.attribute(minified, true).attribute(artifactType, "jar")
                    }
                    registerTransform(SomeTransform) {
                        from.attribute(optimized, false).attribute(minified, true).attribute(artifactType, "jar")
                        to.attribute(optimized, true).attribute(minified, true).attribute(artifactType, "jar")
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top