From dcd92aa3582c0c7df3950906c68dc4298cdb83ac Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Tue, 26 Mar 2024 15:00:07 +0100 Subject: [PATCH] Update README.md with Gradle snippet for Kotlin DSL (pull #749) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81e979f0..a4835570 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,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: 'javacpp', version: '1.5.10' + implementation("org.bytedeco:javacpp:1.5.10") } ```