mirror of
https://github.com/apple/pkl.git
synced 2026-04-25 17:58:50 +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
@@ -12,9 +12,9 @@ plugins {
|
||||
val graalVmBaseDir = buildInfo.graalVm.baseDir
|
||||
|
||||
dependencies {
|
||||
implementation(project(":pkl-core"))
|
||||
implementation(project(":pkl-commons-cli"))
|
||||
implementation(project(":pkl-commons"))
|
||||
implementation(projects.pklCore)
|
||||
implementation(projects.pklCommonsCli)
|
||||
implementation(projects.pklCommons)
|
||||
implementation(libs.commonMark)
|
||||
implementation(libs.commonMarkTables)
|
||||
implementation(libs.kotlinxHtml)
|
||||
@@ -24,7 +24,7 @@ dependencies {
|
||||
exclude(group = "org.jetbrains.kotlin")
|
||||
}
|
||||
|
||||
testImplementation(project(":pkl-commons-test"))
|
||||
testImplementation(projects.pklCommonsTest)
|
||||
testImplementation(libs.jimfs)
|
||||
|
||||
// Graal.JS
|
||||
|
||||
Reference in New Issue
Block a user