Fix dependency scopes (#1534)

Fixes the following pom.xml issues:

1. pkl-doc and pkl-codegen-java sets the wrong dependency scopes for
pkl-commons-cli/pkl-base
2. pkl-config-kotlin sets the wrong dependency scope for
pkl-config-java-all

Closes #1293
Closes #1517
This commit is contained in:
Daniel Chao
2026-04-20 08:54:49 -07:00
committed by GitHub
parent 2e49a319b3
commit 9046221e03
3 changed files with 7 additions and 5 deletions
+4 -2
View File
@@ -33,8 +33,10 @@ executable {
}
dependencies {
implementation(projects.pklCore)
implementation(projects.pklCommonsCli)
// CliDocGeneratorOptions exposes pkl-commons-cli and pkl-base
api(projects.pklCore)
api(projects.pklCommonsCli)
implementation(projects.pklCommons)
implementation(projects.pklParser)
implementation(libs.commonMark)