|
5 | 5 | <groupId>org.nameapi.client</groupId> |
6 | 6 | <artifactId>nameapi-client</artifactId> |
7 | 7 | <name>nameapi-client</name> |
8 | | - <version>5.3.0</version> |
| 8 | + <version>5.4.0</version> |
9 | 9 |
|
10 | 10 | <url>https://github.com/optimaize/nameapi-client-java</url> |
11 | 11 | <description> |
|
40 | 40 | <properties> |
41 | 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
42 | 42 | <java.version>1.8</java.version> |
43 | | - <anythingworks.version>0.5</anythingworks.version> |
44 | | - <ontology.version>5.3.4</ontology.version> |
| 43 | + <anythingworks.version>1.1.0</anythingworks.version> |
| 44 | + <ontology.version>5.4.0</ontology.version> |
45 | 45 | <swagger-annotations-version>1.5.4</swagger-annotations-version> |
46 | 46 | <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
| 47 | + <repo-base-url>https://repo1.maven.org</repo-base-url> |
47 | 48 | </properties> |
48 | 49 |
|
| 50 | + <repositories> |
| 51 | + <repository> |
| 52 | + <id>optimaize-release</id> |
| 53 | + <url>${repo-base-url}/maven2</url> |
| 54 | + <releases><enabled>true</enabled></releases> |
| 55 | + </repository> |
| 56 | + <repository> |
| 57 | + <id>optimaize-snapshot</id> |
| 58 | + <url>${repo-base-url}/maven2</url> |
| 59 | + <snapshots><enabled>true</enabled></snapshots> |
| 60 | + </repository> |
| 61 | + </repositories> |
| 62 | + |
49 | 63 | <build> |
50 | 64 | <resources> |
51 | 65 | <resource><!-- this is default, but because we tamper with the resources, we need to explicitly mention it. --> |
|
217 | 231 | <groupId>com.optimaize.anythingworks.client.rest</groupId> |
218 | 232 | <artifactId>anythingworks-client-rest</artifactId> |
219 | 233 | <version>${anythingworks.version}</version> |
| 234 | + <exclusions> |
| 235 | + <exclusion> |
| 236 | + <artifactId>jackson-core</artifactId> |
| 237 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 238 | + </exclusion> |
| 239 | + <exclusion> |
| 240 | + <artifactId>jackson-databind</artifactId> |
| 241 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 242 | + </exclusion> |
| 243 | + <exclusion> |
| 244 | + <artifactId>jackson-datatype-guava</artifactId> |
| 245 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 246 | + </exclusion> |
| 247 | + <exclusion> |
| 248 | + <artifactId>jackson-jaxrs-base</artifactId> |
| 249 | + <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 250 | + </exclusion> |
| 251 | + <exclusion> |
| 252 | + <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 253 | + <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 254 | + </exclusion> |
| 255 | + <exclusion> |
| 256 | + <artifactId>jackson-module-jaxb-annotations</artifactId> |
| 257 | + <groupId>com.fasterxml.jackson.module</groupId> |
| 258 | + </exclusion> |
| 259 | + <exclusion> |
| 260 | + <artifactId>javassist</artifactId> |
| 261 | + <groupId>org.javassist</groupId> |
| 262 | + </exclusion> |
| 263 | + <exclusion> |
| 264 | + <artifactId>jersey-common</artifactId> |
| 265 | + <groupId>org.glassfish.jersey.core</groupId> |
| 266 | + </exclusion> |
| 267 | + <exclusion> |
| 268 | + <artifactId>jersey-media-multipart</artifactId> |
| 269 | + <groupId>org.glassfish.jersey.media</groupId> |
| 270 | + </exclusion> |
| 271 | + <exclusion> |
| 272 | + <artifactId>jersey-client</artifactId> |
| 273 | + <groupId>org.glassfish.jersey.core</groupId> |
| 274 | + </exclusion> |
| 275 | + </exclusions> |
| 276 | + </dependency> |
| 277 | + |
| 278 | + <dependency> |
| 279 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 280 | + <artifactId>jackson-databind</artifactId> |
| 281 | + <version>2.14.1</version> |
| 282 | + </dependency> |
| 283 | + <dependency> |
| 284 | + <artifactId>jackson-core</artifactId> |
| 285 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 286 | + <version>2.14.1</version> |
| 287 | + </dependency> |
| 288 | + <dependency> |
| 289 | + <artifactId>jackson-datatype-guava</artifactId> |
| 290 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 291 | + <version>2.14.1</version> |
| 292 | + </dependency> |
| 293 | + <dependency> |
| 294 | + <artifactId>jackson-jaxrs-base</artifactId> |
| 295 | + <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 296 | + <version>2.14.1</version> |
| 297 | + </dependency> |
| 298 | + <dependency> |
| 299 | + <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 300 | + <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 301 | + <version>2.14.1</version> |
220 | 302 | </dependency> |
| 303 | + <dependency> |
| 304 | + <artifactId>jackson-module-jaxb-annotations</artifactId> |
| 305 | + <groupId>com.fasterxml.jackson.module</groupId> |
| 306 | + <version>2.14.1</version> |
| 307 | + </dependency> |
| 308 | + |
| 309 | + <dependency> |
| 310 | + <artifactId>javassist</artifactId> |
| 311 | + <groupId>org.javassist</groupId> |
| 312 | + <version>3.29.2-GA</version> |
| 313 | + </dependency> |
| 314 | + |
| 315 | + <dependency> |
| 316 | + <artifactId>jersey-common</artifactId> |
| 317 | + <groupId>org.glassfish.jersey.core</groupId> |
| 318 | + <version>2.25.1</version> |
| 319 | + </dependency> |
| 320 | + <dependency> |
| 321 | + <groupId>org.glassfish.jersey.core</groupId> |
| 322 | + <artifactId>jersey-client</artifactId> |
| 323 | + <version>2.25.1</version> |
| 324 | + </dependency> |
| 325 | + <dependency> |
| 326 | + <artifactId>jersey-media-multipart</artifactId> |
| 327 | + <groupId>org.glassfish.jersey.media</groupId> |
| 328 | + <version>2.25.1</version> |
| 329 | + </dependency> |
| 330 | + <dependency> |
| 331 | + <groupId>org.glassfish.jersey.bundles.repackaged</groupId> |
| 332 | + <artifactId>jersey-guava</artifactId> |
| 333 | + <version>2.25.1</version> |
| 334 | + </dependency> |
| 335 | + |
221 | 336 |
|
222 | 337 | <dependency> |
223 | 338 | <groupId>org.nameapi.ontology.core</groupId> |
|
0 commit comments