Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ For a Maven project, add the following to your `pom.xml` file:
<dependency>
<groupId>io.dapr</groupId>
<artifactId>dapr-sdk</artifactId>
<version>1.14.2</version>
<version>1.15.0</version>
</dependency>
<!-- Dapr's SDK for Actors (optional). -->
<dependency>
<groupId>io.dapr</groupId>
<artifactId>dapr-sdk-actors</artifactId>
<version>1.14.2</version>
<version>1.15.0</version>
</dependency>
<!-- Dapr's SDK integration with SpringBoot (optional). -->
<dependency>
<groupId>io.dapr</groupId>
<artifactId>dapr-sdk-springboot</artifactId>
<version>1.14.2</version>
<version>1.15.0</version>
</dependency>
...
</dependencies>
Expand All @@ -76,11 +76,11 @@ For a Gradle project, add the following to your `build.gradle` file:
dependencies {
...
// Dapr's core SDK with all features, except Actors.
compile('io.dapr:dapr-sdk:1.14.2')
compile('io.dapr:dapr-sdk:1.15.0')
// Dapr's SDK for Actors (optional).
compile('io.dapr:dapr-sdk-actors:1.14.2')
compile('io.dapr:dapr-sdk-actors:1.15.0')
// Dapr's SDK integration with SpringBoot (optional).
compile('io.dapr:dapr-sdk-springboot:1.14.2')
compile('io.dapr:dapr-sdk-springboot:1.15.0')
}
```

Expand Down
14 changes: 7 additions & 7 deletions daprdocs/content/en/java-sdk-docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ For a Maven project, add the following to your `pom.xml` file:
<dependency>
<groupId>io.dapr</groupId>
<artifactId>dapr-sdk</artifactId>
<version>1.14.2</version>
<version>1.15.0</version>
</dependency>
<!-- Dapr's SDK for Actors (optional). -->
<dependency>
<groupId>io.dapr</groupId>
<artifactId>dapr-sdk-actors</artifactId>
<version>1.14.2</version>
<version>1.15.0</version>
</dependency>
<!-- Dapr's SDK integration with SpringBoot (optional). -->
<dependency>
<groupId>io.dapr</groupId>
<artifactId>dapr-sdk-springboot</artifactId>
<version>1.14.2</version>
<version>1.15.0</version>
</dependency>
...
</dependencies>
Expand All @@ -76,11 +76,11 @@ For a Gradle project, add the following to your `build.gradle` file:
dependencies {
...
// Dapr's core SDK with all features, except Actors.
compile('io.dapr:dapr-sdk:1.14.2')
compile('io.dapr:dapr-sdk:1.15.0')
// Dapr's SDK for Actors (optional).
compile('io.dapr:dapr-sdk-actors:1.14.2')
compile('io.dapr:dapr-sdk-actors:1.15.0')
// Dapr's SDK integration with SpringBoot (optional).
compile('io.dapr:dapr-sdk-springboot:1.14.2')
compile('io.dapr:dapr-sdk-springboot:1.15.0')
}
```

Expand All @@ -96,7 +96,7 @@ You can fix this by specifying a compatible `OkHttp` version in your project to
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>1.14.2</version>
<version>1.15.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions daprdocs/content/en/java-sdk-docs/spring-boot/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ If you already have a Spring Boot application, you can directly add the followin
<dependency>
<groupId>io.dapr.spring</groupId>
<artifactId>dapr-spring-boot-starter</artifactId>
<version>0.14.2</version>
<version>0.15.0</version>
</dependency>
<dependency>
<groupId>io.dapr.spring</groupId>
<artifactId>dapr-spring-boot-starter-test</artifactId>
<version>0.14.2</version>
<version>0.15.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
1,464 changes: 954 additions & 510 deletions docs/allclasses-index.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/allpackages-index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Aug 04 13:24:58 UTC 2025 -->
<title>All Packages (dapr-sdk-parent 1.14.2 API)</title>
<!-- Generated by javadoc (17) on Wed Aug 13 15:53:16 CDT 2025 -->
<title>All Packages (dapr-sdk-parent 1.16.0-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2025-08-04">
<meta name="dc.created" content="2025-08-13">
<meta name="description" content="package index">
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="script-dir/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="script-dir/jquery-3.6.1.min.js"></script>
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
</head>
<body class="all-packages-index-page">
Expand Down
Loading
Loading