|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>com.recombee</groupId> |
| 9 | + <artifactId>api-client-parent</artifactId> |
| 10 | + <version>4.1.0</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>api-client</artifactId> |
| 14 | + <name>Recombee API Client</name> |
| 15 | + |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + <dependency> |
| 19 | + <groupId>com.squareup.okhttp3</groupId> |
| 20 | + <artifactId>okhttp</artifactId> |
| 21 | + <version>4.12.0</version> |
| 22 | + </dependency> |
| 23 | + <dependency> |
| 24 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 25 | + <artifactId>jackson-core</artifactId> |
| 26 | + <version>2.13.2</version> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 30 | + <artifactId>jackson-databind</artifactId> |
| 31 | + <version>2.13.2.2</version> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>junit</groupId> |
| 35 | + <artifactId>junit</artifactId> |
| 36 | + <version>4.13.1</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>commons-lang</groupId> |
| 40 | + <artifactId>commons-lang</artifactId> |
| 41 | + <version>2.6</version> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>commons-codec</groupId> |
| 45 | + <artifactId>commons-codec</artifactId> |
| 46 | + <version>1.10</version> |
| 47 | + </dependency> |
| 48 | + </dependencies> |
| 49 | + |
| 50 | +</project> |
0 commit comments