Skip to content

Commit 599c7ff

Browse files
authored
Merge branch 'master' into actor_ttl
2 parents 695a925 + 6e0f267 commit 599c7ff

File tree

16 files changed

+248
-415
lines changed

16 files changed

+248
-415
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,13 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
java: [ 17 ]
27-
spring-boot-version: [ 3.0.13 ]
28-
spring-boot-display-version: [ 3.0.x ]
27+
spring-boot-version: [ 3.2.6 ]
28+
spring-boot-display-version: [ 3.2.x ]
2929
experimental: [ false ]
3030
include:
3131
- java: 17
32-
spring-boot-version: 2.7.18
33-
spring-boot-display-version: 2.7.x
34-
experimental: false
35-
- java: 17
36-
spring-boot-version: 2.6.14
37-
spring-boot-display-version: 2.6.x
38-
experimental: false
39-
- java: 17
40-
spring-boot-version: 2.5.7
41-
spring-boot-display-version: 2.5.x
32+
spring-boot-version: 3.3.0
33+
spring-boot-display-version: 3.3.x
4234
experimental: false
4335
env:
4436
GOVER: "1.20"

.mvn/wrapper/maven-wrapper.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17+
wrapperVersion=3.3.2
18+
distributionType=script
1719
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.5/apache-maven-3.8.5-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
20+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar

.sdkmanrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Enable auto-env through the sdkman_auto_env config
22
# Add key=value pairs of SDKs to use below
3-
java=11.0.19-tem
3+
java=17.0.11-tem
44
maven=3.8.5

docs/project-reports.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ <h5>Modules</h5>
4242
<li class="none"><a href="dapr-sdk-actors/index.html" title="dapr-sdk-actors">dapr-sdk-actors</a></li>
4343
<li class="none"><a href="dapr-sdk-workflows/index.html" title="dapr-sdk-workflows">dapr-sdk-workflows</a></li>
4444
<li class="none"><a href="dapr-sdk-springboot/index.html" title="dapr-sdk-springboot">dapr-sdk-springboot</a></li>
45-
<li class="none"><a href="dapr-sdk-springboot3/index.html" title="dapr-sdk-springboot3">dapr-sdk-springboot3</a></li>
4645
<li class="none"><a href="dapr-sdk-examples/index.html" title="dapr-sdk-examples">dapr-sdk-examples</a></li>
4746
</ul>
4847
<h5>Project Documentation</h5>

examples/pom.xml

Lines changed: 13 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
<maven.deploy.skip>true</maven.deploy.skip>
2525
<spotbugs.fail>false</spotbugs.fail>
2626
<opentelemetry.version>0.14.0</opentelemetry.version>
27-
<springboot.version>3.2.0</springboot.version>
27+
<springboot.version>3.2.6</springboot.version>
2828
</properties>
2929

3030
<dependencies>
3131
<dependency>
3232
<groupId>commons-cli</groupId>
3333
<artifactId>commons-cli</artifactId>
34-
<version>1.4</version>
34+
<version>1.8.0</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>io.grpc</groupId>
@@ -59,21 +59,11 @@
5959
<artifactId>protobuf-java-util</artifactId>
6060
<version>${protobuf.version}</version>
6161
</dependency>
62-
<dependency>
63-
<groupId>com.github.os72</groupId>
64-
<artifactId>protoc-jar-maven-plugin</artifactId>
65-
<version>3.11.4</version>
66-
</dependency>
6762
<dependency>
6863
<groupId>org.springframework.boot</groupId>
6964
<artifactId>spring-boot-starter-web</artifactId>
7065
<version>${springboot.version}</version>
7166
</dependency>
72-
<dependency>
73-
<groupId>org.springframework.boot</groupId>
74-
<artifactId>spring-boot-autoconfigure</artifactId>
75-
<version>${springboot.version}</version>
76-
</dependency>
7767
<dependency>
7868
<groupId>com.jayway.jsonpath</groupId>
7969
<artifactId>json-path</artifactId>
@@ -112,7 +102,7 @@
112102
</dependency>
113103
<dependency>
114104
<groupId>io.dapr</groupId>
115-
<artifactId>dapr-sdk-springboot3</artifactId>
105+
<artifactId>dapr-sdk-springboot</artifactId>
116106
<version>${project.version}</version>
117107
</dependency>
118108
<dependency>
@@ -140,16 +130,6 @@
140130
<artifactId>javax.annotation-api</artifactId>
141131
<version>1.3.2</version>
142132
</dependency>
143-
<dependency>
144-
<groupId>org.springframework</groupId>
145-
<artifactId>spring-context</artifactId>
146-
<version>6.1.1</version>
147-
</dependency>
148-
<dependency>
149-
<groupId>org.springframework</groupId>
150-
<artifactId>spring-core</artifactId>
151-
<version>6.1.1</version>
152-
</dependency>
153133
</dependencies>
154134

155135
<build>
@@ -190,7 +170,7 @@
190170
<plugin>
191171
<groupId>org.apache.maven.plugins</groupId>
192172
<artifactId>maven-compiler-plugin</artifactId>
193-
<version>3.8.1</version>
173+
<version>3.13.0</version>
194174
<configuration>
195175
<release>${java.version}</release>
196176
</configuration>
@@ -206,7 +186,7 @@
206186
<plugin>
207187
<groupId>org.apache.maven.plugins</groupId>
208188
<artifactId>maven-site-plugin</artifactId>
209-
<version>3.9.1</version>
189+
<version>3.12.1</version>
210190
<configuration>
211191
<skip>true</skip>
212192
</configuration>
@@ -236,6 +216,14 @@
236216
<skip>true</skip>
237217
</configuration>
238218
</plugin>
219+
<plugin>
220+
<groupId>org.codehaus.mojo</groupId>
221+
<artifactId>animal-sniffer-maven-plugin</artifactId>
222+
<configuration>
223+
<!-- Spring Boot 3 has a Java 17 baseline, no Java 8 support -->
224+
<skip>true</skip>
225+
</configuration>
226+
</plugin>
239227
</plugins>
240228
</build>
241229
</project>

0 commit comments

Comments
 (0)