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" } ```