Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for testLibs (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts

        id("gradlebuild.test-retry")
        id("gradlebuild.private-javadoc")
    }
    
    val testLibs = project.versionCatalogs.named("testLibs")
    
    dependencies {
        api(platform("gradlebuild:build-platform"))
        implementation("gradlebuild:gradle-plugin")
    
        testImplementation(testLibs.findLibrary("junit5Vintage").get())
    
        testRuntimeOnly(testLibs.findLibrary("junitPlatform").get())
    }
    
    tasks.withType<KotlinCompile>().configureEach {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts

    }
    
    val testLibs = project.versionCatalogs.named("testLibs")
    
    dependencies {
        api(platform("gradlebuild:build-platform"))
        implementation("gradlebuild:gradle-plugin")
    
        implementation(localGroovy())
        testImplementation(testLibs.findLibrary("spock").get())
        testImplementation(testLibs.findLibrary("bytebuddy").get())
        testImplementation(testLibs.findLibrary("objenesis").get())
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  3. build-logic-commons/basics/build.gradle.kts

        }
        implementation(buildLibs.kgp) {
            because("For manually defined KotlinSourceSet accessor - sourceSets.main.get().kotlin")
        }
    
        testImplementation(testLibs.junit5JupiterEngine)
    
        testRuntimeOnly(testLibs.junitPlatform)
    }
    
    tasks.test {
        useJUnitPlatform()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 903 bytes
    - Click Count (0)
  4. build-logic/buildquality/build.gradle.kts

            because("Required by IncubatingApiReportTask")
        }
        implementation(buildLibs.develocityPlugin) {
            because("Arch-test plugin configures the PTS extension")
        }
    
        testImplementation(testLibs.junit5JupiterEngine)
        testImplementation(buildLibs.commonsLang3)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 1.2K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/build.gradle.kts

        implementation(buildLibs.jspecify)
        implementation(libs.asm)
        compileOnly(buildLibs.kotlinCompilerEmbeddable)
    
        testImplementation(buildLibs.jsoup)
        testImplementation(testLibs.junit5JupiterEngine)
    }
    
    tasks.compileGroovy.configure {
        classpath += files(tasks.compileKotlin)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 927 bytes
    - Click Count (0)
Back to Top