Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 203 for JAR (0.02 sec)

  1. platforms/core-runtime/wrapper-main/build.gradle.kts

        exclude("gradle-*-classpath.properties")
        exclude("gradle-*-parameter-names.properties")
    }
    
    // Using Gr8 plugin with ProGuard to minify the wrapper JAR.
    // This minified JAR is added to the project root when the wrapper task is used.
    // It is embedded in the main JAR as a resource called `/gradle-wrapper.jar.`
    gr8 {
        create("gr8") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/services/NativeServicesInitializationTest.groovy

            URL[] jars = [
                jar(NativeServices),
                jar(ServiceRegistration),
                jar(ServiceRegistry),
                jar(Native),
                jar(LoggerFactory),
                jar(Chmod),
                jar(TemporaryFileProvider),
                jar(Cast),
                jar(Inject),
                jar(Stoppable)
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 08:51:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    }
                    task defaultJar(type: Jar) {
                       archiveBaseName = 'b-default'
                    }
                    task fooJar(type: Jar) {
                       archiveBaseName = 'b-foo'
                    }
                    task barJar(type: Jar) {
                       archiveBaseName = 'b-bar'
                    }
                    tasks.withType(Jar) { destinationDirectory = buildDir }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            outputContains("result = [lib1-2.1.jar, lib2-4.0.jar]")
    
            when:
            configurationCacheRun("resolve1", "resolve2")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("result = [lib1-2.1.jar, lib2-4.0.jar]")
    
            where:
            repo                 | _
            new MavenFileRepo()  | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/SelfResolvingDependencyIntegrationTest.groovy

            run "verify"
    
            then:
            outputContains("files: [lib.jar]")
            outputContains("resolve: [lib.jar]")
            outputContains("resolve-not-transitive: [lib.jar]")
            outputContains("resolve-transitive: [lib.jar]")
        }
    
        // This test documents existing behaviour rather than desired behaviour
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

            given:
            def jar = file("plugin.jar")
            pluginBuilder.addPlugin("project.task('hello')")
            pluginBuilder.publishTo(executer, jar)
    
            buildScript """
                buildscript {
                    dependencies { classpath files("plugin.jar") }
                }
    
                apply plugin: org.gradle.test.TestPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

        def "artifacts are ordered by name then classifier then extension then type"() {
            ResolvedArtifact artifact1 = artifact("a", null, "jar", "jar")
            ResolvedArtifact artifact2 = artifact("b", null, "jar", "jar")
            ResolvedArtifact artifact3 = artifact("b", "a-classifier", "jar", "jar")
            ResolvedArtifact artifact4 = artifact("b", "b-classifier", "b-type", "a-ext")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            distDir.zipTo(externalRuntimeDep)
            runtimeDep = distDir.createZip("lib/dep-1.2.jar")
    
            resourcesDir = tmpDir.createDir("some-module/build/resources/main")
            save(
                properties(runtime: 'dep-1.2.jar', projects: ''),
                resourcesDir.file("gradle-some-module-classpath.properties"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            compileOptions.bootstrapClasspath = TestFiles.fixed(new File("lib1.jar"), new File("lib2.jar"))
            spec.compileOptions = compileOptions
    
            expect:
            builder.build() == ["-bootclasspath", "lib1.jar${File.pathSeparator}lib2.jar"] + defaultOptions
        }
    
        def "generates -extdirs option"() {
            spec.compileOptions.extensionDirs = "/dir1:/dir2"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            then:
            file('build/install/sample/lib').allDescendants() == ['sample.jar', 'utils.jar', 'core.jar', 'implementation-1.0.jar'] as Set
    
            and:
            unixClasspath('sample') == ['sample.jar', 'utils.jar', 'core.jar', 'implementation-1.0.jar'] as Set
            windowsClasspath('sample') == ['sample.jar', 'utils.jar', 'core.jar', 'implementation-1.0.jar'] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top