-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpom.xml
99 lines (81 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.abubusoft</groupId>
<artifactId>kripton-parent</artifactId>
<version>8.2.0-rc.4</version>
<relativePath>../kripton-parent/pom.xml</relativePath>
</parent>
<name>Kripton Retrofit Converter</name>
<artifactId>kripton-retrofit-converter</artifactId>
<packaging>jar</packaging>
<properties>
<java.version>1.8</java.version>
<kripton.version>8.2.0-rc.4</kripton.version>
<!-- dependencies version -->
<jackson.version>2.13.4</jackson.version>
<retrofit.version>2.9.0</retrofit.version>
<rx.version>2.2.19</rx.version>
<!-- test version -->
<junit.version>4.13.1</junit.version>
<unitils.version>3.4.2</unitils.version>
<jsr305.version>3.0.1</jsr305.version>
<!-- <guava.version>29.0-jre</guava.version> -->
<robolectric.version>3.1.4</robolectric.version>
<!-- android stub by roboletric -->
<roboletricAndroidAll.version>5.0.0_r2-robolectric-0</roboletricAndroidAll.version>
<!-- processor libraries -->
<javapoet.version>1.9.0</javapoet.version>
<antlr.version>4.7.1</antlr.version>
</properties>
<description>Kripton adapter for Retrofit library</description>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>3.14.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.14.9</version>
</dependency>
<dependency>
<groupId>com.abubusoft</groupId>
<artifactId>kripton</artifactId>
<version>${kripton.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>${retrofit.version}</version>
</dependency>
<!-- TEST DEPENDENCIES -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.unitils</groupId>
<artifactId>unitils-core</artifactId>
<version>${unitils.version}</version>
<exclusions>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
</dependencies>
</project>