| |
| plugins { |
| id("common-configuration") |
| id("test-federation-convention") |
| id("com.autonomousapps.dependency-analysis") |
| kotlin("jvm") |
| } |
| |
| dependencies { |
| api(project(":examples:scripting-jvm-simple-script")) |
| api(project(":kotlin-scripting-jvm-host-unshaded")) |
| testRuntimeOnly(project(":kotlin-compiler")) |
| testRuntimeOnly(project(":kotlin-scripting-compiler")) |
| |
| testImplementation(platform(libs.junit.bom)) |
| testImplementation(libs.junit.jupiter.api) |
| testRuntimeOnly(libs.junit.jupiter.engine) |
| testRuntimeOnly(libs.junit.platform.launcher) |
| } |
| |
| sourceSets { |
| "main" { projectDefault() } |
| "test" { projectDefault() } |
| } |
| |
| tasks.test { |
| useJUnitPlatform() |
| } |