Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Comment thread
artursouza marked this conversation as resolved.
...
<!-- 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>
...
Expand Down Expand Up @@ -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.
Expand Down