Skip to content

Commit 0cd82ac

Browse files
committed
Move api_client to maven submodule
1 parent f2adf4d commit 0cd82ac

File tree

294 files changed

+56
-37
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

294 files changed

+56
-37
lines changed

api-client/pom.xml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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+
<dependencies>
17+
<dependency>
18+
<groupId>com.squareup.okhttp3</groupId>
19+
<artifactId>okhttp</artifactId>
20+
<version>4.9.3</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>com.fasterxml.jackson.core</groupId>
24+
<artifactId>jackson-core</artifactId>
25+
<version>2.13.2</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>com.fasterxml.jackson.core</groupId>
29+
<artifactId>jackson-databind</artifactId>
30+
<version>2.13.2.2</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>junit</groupId>
34+
<artifactId>junit</artifactId>
35+
<version>4.13.1</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>commons-lang</groupId>
39+
<artifactId>commons-lang</artifactId>
40+
<version>2.6</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>commons-codec</groupId>
44+
<artifactId>commons-codec</artifactId>
45+
<version>1.10</version>
46+
</dependency>
47+
</dependencies>
48+
49+
</project>

0 commit comments

Comments
 (0)