mirror of
https://github.com/apple/pkl.git
synced 2026-04-09 18:33:40 +02:00
Update Gradle syntax in docs (#210)
Replace the legacy "compile" scope with "implementation". This matches Maven Central's recommended syntax: https://central.sonatype.com/artifact/org.pkl-lang/pkl-core
This commit is contained in:
@@ -33,7 +33,7 @@ Groovy::
|
||||
[source,groovy,subs="+attributes"]
|
||||
----
|
||||
dependencies {
|
||||
compile "org.pkl-lang:pkl-codegen-kotlin:{pkl-artifact-version}"
|
||||
implementation "org.pkl-lang:pkl-codegen-kotlin:{pkl-artifact-version}"
|
||||
}
|
||||
|
||||
repositories {
|
||||
@@ -52,7 +52,7 @@ Kotlin::
|
||||
[source,kotlin,subs="+attributes"]
|
||||
----
|
||||
dependencies {
|
||||
compile("org.pkl-lang:pkl-codegen-kotlin:{pkl-artifact-version}")
|
||||
implementation("org.pkl-lang:pkl-codegen-kotlin:{pkl-artifact-version}")
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
||||
Reference in New Issue
Block a user