|
9 | 9 | <packaging>pom</packaging> |
10 | 10 |
|
11 | 11 | <properties> |
| 12 | + <revision>0.5.5</revision> |
12 | 13 | <sofa.ark.version>2.2.5</sofa.ark.version> |
13 | 14 | <spring.boot.version>2.7.15</spring.boot.version> |
14 | 15 | <logback.core>1.2.9</logback.core> |
15 | | - <revision>0.5.5</revision> |
16 | 16 | <project.encoding>UTF-8</project.encoding> |
17 | 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 | 18 | <java.version>1.8</java.version> |
|
29 | 29 | <maven.compiler.target>8</maven.compiler.target> |
30 | 30 | <flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version> |
31 | 31 | <oshi.version>6.4.5</oshi.version> |
| 32 | + <guice.version>6.0.0</guice.version> |
| 33 | + <guice-multibindings.version>4.2.3</guice-multibindings.version> |
| 34 | + <netty.version>4.1.94.Final</netty.version> |
| 35 | + <logback.version>1.2.9</logback.version> |
32 | 36 | <lombok.version>1.18.22</lombok.version> |
33 | 37 | <junit.version>4.13.1</junit.version> |
34 | 38 | <mockito.version>4.8.1</mockito.version> |
35 | 39 | <flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version> |
36 | 40 | <oshi.version>6.4.5</oshi.version> |
| 41 | + <guava.version>32.1.3-jre</guava.version> |
37 | 42 | <fastjson.version>1.2.83</fastjson.version> |
38 | | - <hessian.version>3.5.1</hessian.version> |
| 43 | + <hessian.version>4.0.66</hessian.version> |
39 | 44 | </properties> |
40 | 45 |
|
41 | 46 | <name>${project.groupId}:${project.artifactId}</name> |
|
82 | 87 |
|
83 | 88 | <dependencyManagement> |
84 | 89 | <dependencies> |
85 | | - <dependency> |
86 | | - <groupId>com.alipay.sofa</groupId> |
87 | | - <artifactId>sofa-ark-bom</artifactId> |
88 | | - <version>${sofa.ark.version}</version> |
89 | | - <scope>import</scope> |
90 | | - <type>pom</type> |
91 | | - </dependency> |
92 | | - |
93 | 90 | <dependency> |
94 | 91 | <groupId>com.alipay.sofa.serverless</groupId> |
95 | 92 | <artifactId>arklet-core</artifactId> |
|
168 | 165 | <version>${spring.boot.version}</version> |
169 | 166 | </dependency> |
170 | 167 |
|
| 168 | + <dependency> |
| 169 | + <groupId>org.springframework.boot</groupId> |
| 170 | + <artifactId>spring-boot</artifactId> |
| 171 | + <version>${spring.boot.version}</version> |
| 172 | + </dependency> |
| 173 | + |
171 | 174 | <dependency> |
172 | 175 | <groupId>org.springframework.boot</groupId> |
173 | 176 | <artifactId>spring-boot-starter-test</artifactId> |
|
187 | 190 | <version>${spring.boot.version}</version> |
188 | 191 | </dependency> |
189 | 192 | <!-- springboot end --> |
| 193 | + |
| 194 | + <dependency> |
| 195 | + <groupId>com.google.inject</groupId> |
| 196 | + <artifactId>guice</artifactId> |
| 197 | + <version>${guice.version}</version> |
| 198 | + </dependency> |
| 199 | + |
| 200 | + <dependency> |
| 201 | + <groupId>com.google.inject.extensions</groupId> |
| 202 | + <artifactId>guice-multibindings</artifactId> |
| 203 | + <version>${guice-multibindings.version}</version> |
| 204 | + </dependency> |
| 205 | + |
| 206 | + <dependency> |
| 207 | + <groupId>com.google.guava</groupId> |
| 208 | + <artifactId>guava</artifactId> |
| 209 | + <version>${guava.version}</version> |
| 210 | + </dependency> |
| 211 | + |
190 | 212 | <dependency> |
191 | 213 | <groupId>com.alibaba</groupId> |
192 | 214 | <artifactId>fastjson</artifactId> |
193 | 215 | <version>${fastjson.version}</version> |
194 | 216 | </dependency> |
195 | 217 |
|
196 | 218 | <dependency> |
197 | | - <groupId>com.alipay.sofa</groupId> |
| 219 | + <groupId>com.caucho</groupId> |
198 | 220 | <artifactId>hessian</artifactId> |
199 | 221 | <version>${hessian.version}</version> |
200 | 222 | </dependency> |
201 | 223 |
|
| 224 | + <dependency> |
| 225 | + <groupId>io.netty</groupId> |
| 226 | + <artifactId>netty-all</artifactId> |
| 227 | + <version>${netty.version}</version> |
| 228 | + </dependency> |
| 229 | + |
| 230 | + <dependency> |
| 231 | + <groupId>ch.qos.logback</groupId> |
| 232 | + <artifactId>logback-classic</artifactId> |
| 233 | + <version>${logback.version}</version> |
| 234 | + </dependency> |
| 235 | + |
| 236 | + <dependency> |
| 237 | + <groupId>ch.qos.logback</groupId> |
| 238 | + <artifactId>logback-core</artifactId> |
| 239 | + <version>${logback.version}</version> |
| 240 | + </dependency> |
| 241 | + |
202 | 242 | <dependency> |
203 | 243 | <groupId>org.projectlombok</groupId> |
204 | 244 | <artifactId>lombok</artifactId> |
|
0 commit comments