Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for integTestRuntimeOnly (0.34 sec)

  1. platforms/software/ivy/build.gradle.kts

        testImplementation(testFixtures(project(":dependency-management")))
    
        integTestImplementation(libs.slf4jApi)
    
        integTestRuntimeOnly(project(":resources-s3"))
        integTestRuntimeOnly(project(":resources-sftp"))
        integTestRuntimeOnly(project(":api-metadata"))
    
        testFixturesApi(project(":base-services")) {
            because("Test fixtures export the Action class")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/build.gradle.kts

        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":logging")))
    
        integTestRuntimeOnly(project(":kotlin-dsl"))
        integTestRuntimeOnly(project(":kotlin-dsl-provider-plugins"))
        integTestRuntimeOnly(project(":api-metadata"))
        integTestRuntimeOnly(project(":test-kit"))
    
        integTestImplementation(project(":jvm-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle-integ-tests.gradle.kts

    tasks.withType<IntegrationTest>().configureEach {
        // See AbstractKotlinIntegrationTest
        "kotlinDslTestsExtraRepo".let {
            systemProperty(it, System.getProperty(it))
        }
    }
    
    dependencies {
        integTestRuntimeOnly(project(":kotlin-dsl-plugins")) {
            because("Tests require 'future-plugin-versions.properties' on the test classpath and the embedded executer needs them available")
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 720 bytes
    - Viewed (0)
  4. platforms/extensibility/unit-test-fixtures/build.gradle.kts

        testImplementation(project(":testing-base"))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder loads services from a Gradle distribution.")
        }
        integTestRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder loads services from a Gradle distribution.")
        }
        integTestDistributionRuntimeClasspath(project(":distributions-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                    val integTestCompileOnly by configurations.getting
                    integTestCompileOnly("javax.servlet:servlet-api:2.5")
                    val integTestRuntimeOnly by configurations.getting
                    integTestRuntimeOnly("mysql:mysql-connector-java:6.0.6")
                }
    
                tasks.named("check") {
                    dependsOn(testing.suites.named("integTest"))
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

                integTestImplementation project
                integTestImplementation 'com.google.guava:guava:29.0-jre'
                integTestCompileOnly 'javax.servlet:servlet-api:2.5'
                integTestRuntimeOnly 'mysql:mysql-connector-java:6.0.6'
            }
    
            tasks.named('check') {
                dependsOn testing.suites.integTest
            }
    
            tasks.register('checkConfiguration') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top