mirror of
https://github.com/apple/pkl.git
synced 2026-04-22 08:18:32 +02:00
Use Gradle typed project accessors
This change activates the `TYPESAFE_PROJECT_ACCESSORS` feature preview in Gradle, and switches to such accessors instead of string-based project references, where possible Relates-To: apple/pkl#204 Signed-off-by: Sam Gammon <sam@elide.ventures>
This commit is contained in:
committed by
Philip K.F. Hölzenspies
parent
cb33a7cdb0
commit
1e50200969
@@ -25,15 +25,15 @@ tasks.jar {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":pkl-commons"))
|
||||
api(project(":pkl-commons-cli"))
|
||||
api(project(":pkl-core"))
|
||||
implementation(projects.pklCommons)
|
||||
api(projects.pklCommonsCli)
|
||||
api(projects.pklCore)
|
||||
|
||||
implementation(libs.kotlinPoet)
|
||||
implementation(libs.kotlinReflect)
|
||||
|
||||
testImplementation(project(":pkl-config-kotlin"))
|
||||
testImplementation(project(":pkl-commons-test"))
|
||||
testImplementation(projects.pklConfigKotlin)
|
||||
testImplementation(projects.pklCommonsTest)
|
||||
testImplementation(libs.kotlinCompilerEmbeddable)
|
||||
testRuntimeOnly(libs.kotlinScriptingCompilerEmbeddable)
|
||||
testRuntimeOnly(libs.kotlinScriptUtil)
|
||||
|
||||
Reference in New Issue
Block a user