From d056d9a780b86639c852bbdddb8aa067f82279d1 Mon Sep 17 00:00:00 2001 From: delvh Date: Mon, 7 Jun 2021 08:43:53 +0200 Subject: [PATCH] Remove no Longer Needed External Maven Repositories From README (#557) * Remove no longer needed external maven repositories * Update README.md Co-authored-by: Artur Souza --- README.md | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/README.md b/README.md index 4269fa757..c52c7c100 100644 --- a/README.md +++ b/README.md @@ -43,21 +43,6 @@ This is the Dapr SDK for Java, including the following features: For a Maven project, add the following to your `pom.xml` file: ```xml - ... - - ... - - - oss-snapshots - https://oss.sonatype.org/content/repositories/snapshots - - - oss-release - https://oss.sonatype.org/content/repositories/releases/ - - - ... - ... ... @@ -88,20 +73,6 @@ For a Maven project, add the following to your `pom.xml` file: For a Gradle project, add the following to your `build.gradle` file: ``` -repositories { - ... - // Dapr repositories - maven { - url "https://oss.sonatype.org/content/repositories/snapshots" - mavenContent { - snapshotsOnly() - } - } - maven { - url "https://oss.sonatype.org/content/repositories/releases/" - } -} -... dependencies { ... // Dapr's core SDK with all features, except Actors.