|
24 | 24 | <maven.deploy.skip>true</maven.deploy.skip> |
25 | 25 | <spotbugs.fail>false</spotbugs.fail> |
26 | 26 | <opentelemetry.version>0.14.0</opentelemetry.version> |
27 | | - <springboot.version>3.2.0</springboot.version> |
| 27 | + <springboot.version>3.2.6</springboot.version> |
28 | 28 | </properties> |
29 | 29 |
|
30 | 30 | <dependencies> |
31 | 31 | <dependency> |
32 | 32 | <groupId>commons-cli</groupId> |
33 | 33 | <artifactId>commons-cli</artifactId> |
34 | | - <version>1.4</version> |
| 34 | + <version>1.8.0</version> |
35 | 35 | </dependency> |
36 | 36 | <dependency> |
37 | 37 | <groupId>io.grpc</groupId> |
|
59 | 59 | <artifactId>protobuf-java-util</artifactId> |
60 | 60 | <version>${protobuf.version}</version> |
61 | 61 | </dependency> |
62 | | - <dependency> |
63 | | - <groupId>com.github.os72</groupId> |
64 | | - <artifactId>protoc-jar-maven-plugin</artifactId> |
65 | | - <version>3.11.4</version> |
66 | | - </dependency> |
67 | 62 | <dependency> |
68 | 63 | <groupId>org.springframework.boot</groupId> |
69 | 64 | <artifactId>spring-boot-starter-web</artifactId> |
70 | 65 | <version>${springboot.version}</version> |
71 | 66 | </dependency> |
72 | | - <dependency> |
73 | | - <groupId>org.springframework.boot</groupId> |
74 | | - <artifactId>spring-boot-autoconfigure</artifactId> |
75 | | - <version>${springboot.version}</version> |
76 | | - </dependency> |
77 | 67 | <dependency> |
78 | 68 | <groupId>com.jayway.jsonpath</groupId> |
79 | 69 | <artifactId>json-path</artifactId> |
|
112 | 102 | </dependency> |
113 | 103 | <dependency> |
114 | 104 | <groupId>io.dapr</groupId> |
115 | | - <artifactId>dapr-sdk-springboot3</artifactId> |
| 105 | + <artifactId>dapr-sdk-springboot</artifactId> |
116 | 106 | <version>${project.version}</version> |
117 | 107 | </dependency> |
118 | 108 | <dependency> |
|
140 | 130 | <artifactId>javax.annotation-api</artifactId> |
141 | 131 | <version>1.3.2</version> |
142 | 132 | </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> |
153 | 133 | </dependencies> |
154 | 134 |
|
155 | 135 | <build> |
|
190 | 170 | <plugin> |
191 | 171 | <groupId>org.apache.maven.plugins</groupId> |
192 | 172 | <artifactId>maven-compiler-plugin</artifactId> |
193 | | - <version>3.8.1</version> |
| 173 | + <version>3.13.0</version> |
194 | 174 | <configuration> |
195 | 175 | <release>${java.version}</release> |
196 | 176 | </configuration> |
|
206 | 186 | <plugin> |
207 | 187 | <groupId>org.apache.maven.plugins</groupId> |
208 | 188 | <artifactId>maven-site-plugin</artifactId> |
209 | | - <version>3.9.1</version> |
| 189 | + <version>3.12.1</version> |
210 | 190 | <configuration> |
211 | 191 | <skip>true</skip> |
212 | 192 | </configuration> |
|
236 | 216 | <skip>true</skip> |
237 | 217 | </configuration> |
238 | 218 | </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> |
239 | 227 | </plugins> |
240 | 228 | </build> |
241 | 229 | </project> |
0 commit comments