From 1f05a3e7ccf0bb14d12f291e08335edb49d2eb78 Mon Sep 17 00:00:00 2001 From: Sachin Verma Date: Fri, 15 Sep 2023 20:07:32 +0530 Subject: [PATCH] Update README.md for new repo url --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 99b8447..5f05630 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,13 @@ Add dependency to your build.gradle for Grails 3.x: repositories { ... //maven { url "http://dl.bintray.com/sachinverma/plugins" } As Bintray services down so update with below repo url change. - maven { url "https://softclinic.jfrog.io/artifactory/grails-plugins-release" } + //maven { url "https://softclinic.jfrog.io/artifactory/grails-plugins-release" } As Bintray services down so update with below repo url change. + maven { url 'https://jitpack.io' } } dependencies { - compile 'org.grails.plugins:csv:1.0.1' + //compile 'org.grails.plugins:csv:1.0.1' + compile 'com.github.vsachinv:grails-csv:1.01' } ```