|
38 | 38 | <maven-plugin-version>1.0.0</maven-plugin-version>
|
39 | 39 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
40 | 40 |
|
| 41 | + <javax.annotation.version>1.3.2</javax.annotation.version> |
41 | 42 | <snakeyaml.version>1.27</snakeyaml.version>
|
42 | 43 | <slf4j.version>1.7.30</slf4j.version>
|
43 | 44 | <guava.version>29.0-jre</guava.version>
|
44 | 45 | <protobuf.version>3.13.0</protobuf.version>
|
45 | 46 | <junit.version>4.13</junit.version>
|
46 | 47 | <bucket4j.version>4.10.0</bucket4j.version>
|
47 | 48 | <bouncycastle.version>1.66</bouncycastle.version>
|
| 49 | + <jodatime.version>2.10.6</jodatime.version> |
| 50 | + <joda-convert.version>2.2.1</joda-convert.version> |
| 51 | + <gson.version>2.8.6</gson.version> |
| 52 | + <jsr305.version>3.0.2</jsr305.version> |
| 53 | + <okhttp3.version>3.14.9</okhttp3.version> |
| 54 | + <swagger-core.version>1.6.2</swagger-core.version> |
| 55 | + <sundrio.version>0.22.0</sundrio.version> |
| 56 | + <gsonfire.version>1.8.4</gsonfire.version> |
48 | 57 | <apache.commons.lang3.version>3.11</apache.commons.lang3.version>
|
49 | 58 | <apache.commons.collections4.version>4.4</apache.commons.collections4.version>
|
50 | 59 | <apache.commons.compress>1.20</apache.commons.compress>
|
|
171 | 180 | <version>${prometheus.client.version}</version>
|
172 | 181 | <optional>true</optional>
|
173 | 182 | </dependency>
|
| 183 | + <dependency> |
| 184 | + <groupId>joda-time</groupId> |
| 185 | + <artifactId>joda-time</artifactId> |
| 186 | + <version>${jodatime.version}</version> |
| 187 | + </dependency> |
| 188 | + <dependency> |
| 189 | + <groupId>org.joda</groupId> |
| 190 | + <artifactId>joda-convert</artifactId> |
| 191 | + <version>${joda-convert.version}</version> |
| 192 | + </dependency> |
| 193 | + <dependency> |
| 194 | + <groupId>com.google.code.gson</groupId> |
| 195 | + <artifactId>gson</artifactId> |
| 196 | + <version>${gson.version}</version> |
| 197 | + </dependency> |
| 198 | + <dependency> |
| 199 | + <groupId>io.gsonfire</groupId> |
| 200 | + <artifactId>gson-fire</artifactId> |
| 201 | + <version>${gsonfire.version}</version> |
| 202 | + </dependency> |
| 203 | + <dependency> |
| 204 | + <groupId>com.squareup.okhttp3</groupId> |
| 205 | + <artifactId>okhttp</artifactId> |
| 206 | + <version>${okhttp3.version}</version> |
| 207 | + </dependency> |
| 208 | + <dependency> |
| 209 | + <groupId>com.squareup.okhttp3</groupId> |
| 210 | + <artifactId>logging-interceptor</artifactId> |
| 211 | + <version>${okhttp3.version}</version> |
| 212 | + </dependency> |
| 213 | + <dependency> |
| 214 | + <groupId>io.swagger</groupId> |
| 215 | + <artifactId>swagger-annotations</artifactId> |
| 216 | + <version>${swagger-core.version}</version> |
| 217 | + </dependency> |
| 218 | + <dependency> |
| 219 | + <groupId>javax.annotation</groupId> |
| 220 | + <artifactId>javax.annotation-api</artifactId> |
| 221 | + <version>${javax.annotation.version}</version> |
| 222 | + </dependency> |
| 223 | + <dependency> |
| 224 | + <groupId>com.google.code.findbugs</groupId> |
| 225 | + <artifactId>jsr305</artifactId> |
| 226 | + <version>${jsr305.version}</version> |
| 227 | + </dependency> |
| 228 | + <dependency> |
| 229 | + <groupId>io.sundr</groupId> |
| 230 | + <artifactId>builder-annotations</artifactId> |
| 231 | + <version>${sundrio.version}</version> |
| 232 | + <scope>compile</scope> |
| 233 | + <exclusions> |
| 234 | + <exclusion> |
| 235 | + <artifactId>tools</artifactId> |
| 236 | + <groupId>com.sun</groupId> |
| 237 | + </exclusion> |
| 238 | + </exclusions> |
| 239 | + </dependency> |
| 240 | + |
174 | 241 |
|
175 | 242 |
|
176 | 243 | <!-- tests -->
|
|
221 | 288 | <artifactId>zjsonpatch</artifactId>
|
222 | 289 | <version>0.4.11</version>
|
223 | 290 | </dependency>
|
| 291 | + <dependency> |
| 292 | + <groupId>org.hamcrest</groupId> |
| 293 | + <artifactId>hamcrest-junit</artifactId> |
| 294 | + <version>2.0.0.0</version> |
| 295 | + <scope>test</scope> |
| 296 | + </dependency> |
224 | 297 |
|
225 | 298 | </dependencies>
|
226 | 299 | </dependencyManagement>
|
|
0 commit comments