| plugins { | |
| 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(libs.junit4) | |
| } | |
| sourceSets { | |
| "main" { projectDefault() } | |
| "test" { projectDefault() } | |
| } |