-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
executable file
·72 lines (61 loc) · 2.12 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.breinify</groupId>
<artifactId>brein-api-library-java</artifactId>
<version>TRUNK-SNAPSHOT</version>
<name>brein-api-library-java</name>
<description>Brein API Library Java</description>
<packaging>jar</packaging>
<properties>
<slf4jVersion>1.7.36</slf4jVersion>
<unirestVersion>1.4.9</unirestVersion>
<gsonVersion>2.9.0</gsonVersion>
<jerseyClientVersion>1.19.1</jerseyClientVersion>
<junitVersion>4.13.2</junitVersion>
</properties>
<dependencies>
<!-- Logger Facade
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4jVersion}</version>
</dependency>
-->
<!-- can be activated to see some logging -->
<!-- please add your flf4j binding as needed -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4jVersion}</version>
<optional>true</optional>
</dependency>
<!-- UNIREST -->
<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
<version>${unirestVersion}</version>
<optional>true</optional>
</dependency>
<!-- Jersey -->
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>${jerseyClientVersion}</version>
<optional>true</optional>
</dependency>
<!-- JSON Support -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gsonVersion}</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junitVersion}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>