From 7c29f9b055c859c915e4fbd47a3e4cca048380fe Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Tue, 26 Mar 2024 15:01:25 +0100 Subject: [PATCH] Update README.md with Gradle snippet for Kotlin DSL (pull #1486) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ccf9ef17964..66b1cf55cf4 100644 --- a/README.md +++ b/README.md @@ -96,10 +96,10 @@ We can also have everything downloaded and installed automatically with: ``` - * Gradle (inside the `build.gradle` file) + * Gradle (inside the `build.gradle.kts` or `build.gradle` file) ```groovy dependencies { - implementation group: 'org.bytedeco', name: moduleName + '-platform', version: moduleVersion + '-1.5.10' + implementation("org.bytedeco:$moduleName-platform:$moduleVersion-1.5.10") } ```