From af0353b1d722268549b12f78363f5e2e81d7cc52 Mon Sep 17 00:00:00 2001 From: Nick Minkler Date: Tue, 4 Jun 2019 12:25:05 -0700 Subject: [PATCH] update readme to point users to using jitpack repo --- README.md | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aeb50ea..5f4877d 100644 --- a/README.md +++ b/README.md @@ -3,30 +3,28 @@ How to include the API with Maven: ```xml - - vault-repo - http://nexus.hc.to/content/repositories/pub_releases - + + jitpack.io + https://jitpack.io + - net.milkbowl.vault + com.github.MilkBowl VaultAPI 1.7 provided ``` + How to include the API with Gradle: ```groovy repositories { - maven { - url "http://nexus.hc.to/content/repositories/pub_releases" - } + maven { url 'https://jitpack.io' } } - dependencies { - compileOnly "net.milkbowl.vault:VaultAPI:1.7" + compileOnly "com.github.MilkBowl:VaultAPI:1.7" } ```