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 <artursouza.ms@outlook.com>
This commit is contained in:
delvh 2021-06-07 08:43:53 +02:00 committed by GitHub
parent 9ce75d977e
commit d056d9a780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 29 deletions

View File

@ -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
<project>
...
<repositories>
...
<!-- BEGIN: Dapr's repositories -->
<repository>
<id>oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<id>oss-release</id>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
</repository>
<!-- END: Dapr's repositories -->
...
</repositories>
...
<dependencies>
...
@ -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.