From 266a7119a56db50902ca84a806b706d7a0131f47 Mon Sep 17 00:00:00 2001 From: delvh Date: Fri, 28 May 2021 17:51:28 +0200 Subject: [PATCH 1/2] Remove no longer needed external maven repositories --- README.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/README.md b/README.md index 2c41cd0714..e1d664e73e 100644 --- a/README.md +++ b/README.md @@ -44,21 +44,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/ - - - ... - ... ... From ae9dcef2fbecbd4cf08a2bda3dab3282a15c9ee6 Mon Sep 17 00:00:00 2001 From: Artur Souza Date: Wed, 2 Jun 2021 23:40:56 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/README.md b/README.md index 3108e27032..c52c7c1003 100644 --- a/README.md +++ b/README.md @@ -73,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.