Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testRuntimeOnly (0.05 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            testImplementation(libs.junit5Vintage)
            testImplementation(libs.spockJUnit4)
            testImplementation(libs.develocityTestAnnotation)
            testRuntimeOnly(libs.bytebuddy)
            testRuntimeOnly(libs.objenesis)
            testRuntimeOnly(libs.junitPlatform)
    
            // use a separate configuration for the platform dependency that does not get published as part of 'apiElements' or 'runtimeElements'
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts

    }
    
    dependencies {
        api(platform("gradlebuild:build-platform"))
        implementation("gradlebuild:gradle-plugin")
    
        testImplementation("org.junit.vintage:junit-vintage-engine")
    
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    }
    
    tasks.withType<KotlinCompile>().configureEach {
        compilerOptions {
            allWarningsAsErrors = true
        }
    }
    
    detekt {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Nov 11 23:24:30 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top