From 4010270d75909a7aad30ba390ce1047ee8079468 Mon Sep 17 00:00:00 2001 From: stephengold Date: Tue, 9 Jul 2024 13:18:42 -0700 Subject: [PATCH] README.md: better advice for users of Gradle's Kotlin DSL --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2efecd7..30d04db 100644 --- a/README.md +++ b/README.md @@ -72,13 +72,13 @@ The build tool should automatically resolve the dependency on JMF. ### Gradle-built projects -Add to the project’s "build.gradle" file: +Add to the project’s "build.gradle" or "build.gradle.kts" file: repositories { mavenCentral() } dependencies { - implementation 'com.github.stephengold:j-ogg-all:1.0.5' + implementation("com.github.stephengold:j-ogg-all:1.0.5") } For some older versions of Gradle, @@ -120,7 +120,7 @@ Add to the project’s "build.gradle" file: mavenCentral() } dependencies { - implementation 'com.github.stephengold:j-ogg-vorbis:1.0.5' + implementation("com.github.stephengold:j-ogg-vorbis:1.0.5") } For some older versions of Gradle,