Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for integTestDistributionRuntimeOnly (0.45 sec)

  1. platforms/software/resources-sftp/build.gradle.kts

        integTestImplementation(libs.jetty)
        integTestImplementation(libs.sshdCore)
        integTestImplementation(libs.sshdScp)
        integTestImplementation(libs.sshdSftp)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Uses application plugin.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/build.gradle.kts

        }
        integTestImplementation(libs.kotlinCompilerEmbeddable)
        integTestImplementation(libs.mockitoKotlin)
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    
        crossVersionTestImplementation(project(":core-api"))
        crossVersionTestImplementation(project(":logging"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/build.gradle.kts

        testImplementation(testFixtures(project(":language-groovy")))
    
        testRuntimeOnly(project(":distributions-jvm"))
    
        integTestImplementation(testFixtures(project(":plugins-java-base")))
    
        integTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("The full distribution is required to run the GroovyToJavaConversionIntegrationTest")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/antlr/build.gradle.kts

        testImplementation(project(":file-collections"))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/plugins/antlr/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/build.gradle.kts

        testFixturesImplementation(project(":build-cache"))
        testFixturesImplementation(project(":problems"))
        testFixturesImplementation(project(":snapshots"))
    
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/build.gradle.kts

        integTestImplementation(testFixtures(project(":plugins-jvm-test-fixtures")))
        integTestImplementation(testFixtures(project(":workers")))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/plugins/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    strictCompile {
        ignoreDeprecations() // most of this project has been deprecated
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. testing/public-api-tests/build.gradle.kts

            attribute(Bundling.BUNDLING_ATTRIBUTE, project.objects.named(Bundling.EMBEDDED))
        }
        extendsFrom(testRepo.get())
    }
    
    dependencies {
        testRepo(project(":public-api"))
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    abstract class IntegTestCommandLineArgumentProvider(
    ) : CommandLineArgumentProvider {
        @get:InputDirectory
        @get:PathSensitive(PathSensitivity.RELATIVE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/build.gradle.kts

        integTestImplementation(project(":base-services-groovy"))
        integTestImplementation(libs.jetbrainsAnnotations)
        integTestImplementation(libs.groovyTest)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics")) {
            because("Requires test-kit: 'java-gradle-plugin' is used in integration tests which always adds the test-kit dependency.")
        }
    }
    
    testFilesCleanup.reportOnly = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top