From 82175efe86cd587c2b285eb7aed300d48ba8e234 Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Fri, 22 Mar 2024 10:52:50 +0100 Subject: [PATCH] Update the Gradle snippet for Kotlin DSL Gradle now recommends to use Kotlin DSL over Groovy DSL. This updates the dependency snippet for Gradle to be compatible with both. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad99b4d6..f67b7c8c 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,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: 'javacv-platform', version: '1.5.10' + implementation("org.bytedeco:javacv-platform:1.5.10") } ```