Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for archiveBase (0.34 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleBackedArtifactBuilder.java

            String destinationDir = isGradleExecuterVersionLessThan("5.1") ? "destinationDir" : "destinationDirectory";
            String archiveName = isGradleExecuterVersionLessThan("5.0") ? "archiveName" : "archiveFileName";
    
            rootDir.mkdirs();
            rootDir.file("settings.gradle").touch();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

            buildFile << """
                abstract class MyTask extends org.gradle.api.internal.ConventionTask {
                    private final Property<String> archiveName = project.objects.property(String)
                    @Input Property<String> getArchiveFileName() { return this.archiveName }
    
                    @Internal String getArchiveName() { return archiveFileName.getOrNull() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/build.gradle.kts

    gr8 {
        create("gr8") {
            // TODO This should work by passing `executableJar` directly to th Gr8 plugin
            programJar(executableJar.flatMap { it.archiveFile })
            archiveName("gradle-wrapper.jar")
            configuration("runtimeClasspath")
            proguardFile("src/main/proguard/wrapper.pro")
            // Exclude META-INF resources from Guava etc. added via transitive dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinMultiplatformPluginSmokeTest.groovy

            def result = testRunner.build()
    
            then:
            result.output.contains("other-jvm.jar")
    
            where:
            // withJava is incompatible pre 1.6.20 since it attempts to set the `archiveName` convention property on the Jar task.
            kotlinVersion << TestedVersions.kotlin.versions.findAll { VersionNumber.parse(it) > VersionNumber.parse("1.6.10") }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top