From 126710315750abc7ab76e7c55f870ca49862a1ca Mon Sep 17 00:00:00 2001 From: carrot <149851+lopcode@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:18:54 +0100 Subject: [PATCH] Update README with latest Maven Central release (#38) --- README.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3220d11..44fd487 100644 --- a/README.md +++ b/README.md @@ -13,19 +13,13 @@ Like what you've read so far? Please give the repo a star 🌟️! ## Usage -Experimental packages are published to [GitHub Packages](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#using-a-published-package): - ```kotlin -maven { - url = uri("https://maven.pkg.github.com/lopcode/vips-ffm") - credentials { - username = project.findProperty("gpr.user") as String - password = project.findProperty("gpr.key") as String - } +repositories { + mavenCentral() } dependencies { - implementation("app.photofox.vips-ffm:vips-ffm-core:0.0.4") + implementation("app.photofox.vips-ffm:vips-ffm-core:0.0.7") } ```