Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitgetLimited
GitHub Repository: BitgetLimited/V3-bitget-api-sdk
Path: blob/master/bitget-java-sdk-api/pom.xml
731 views
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
<modelVersion>4.0.0</modelVersion>
5
<groupId>com.upex.contract</groupId>
6
<artifactId>bitget-java-sdk-api</artifactId>
7
<version>1.0.1-SNAPSHOT</version>
8
9
<name>bitget-java-sdk-api</name>
10
<description>A Java sdk for Bitget exchange API.</description>
11
<url>http://www.bitget.com/</url>
12
13
<properties>
14
<java.version>1.8</java.version>
15
<lombok-version>1.16.20</lombok-version>
16
<okhttp-version>4.7.2</okhttp-version>
17
<retorfit2-version>2.8.1</retorfit2-version>
18
<fastjson-version>1.2.70</fastjson-version>
19
<commons-lang3-version>3.7</commons-lang3-version>
20
<commons-codec-version>1.14</commons-codec-version>
21
<junit-version>4.12</junit-version>
22
<commons-collections4>4.4</commons-collections4>
23
<google-guava>27.1-jre</google-guava>
24
</properties>
25
26
<dependencies>
27
<dependency>
28
<groupId>org.projectlombok</groupId>
29
<artifactId>lombok</artifactId>
30
<version>${lombok-version}</version>
31
</dependency>
32
<dependency>
33
<groupId>com.squareup.okhttp3</groupId>
34
<artifactId>okhttp</artifactId>
35
<version>${okhttp-version}</version>
36
</dependency>
37
<dependency>
38
<groupId>com.squareup.retrofit2</groupId>
39
<artifactId>retrofit</artifactId>
40
<version>${retorfit2-version}</version>
41
</dependency>
42
<dependency>
43
<groupId>com.squareup.retrofit2</groupId>
44
<artifactId>converter-scalars</artifactId>
45
<version>${retorfit2-version}</version>
46
</dependency>
47
<dependency>
48
<groupId>com.squareup.retrofit2</groupId>
49
<artifactId>converter-gson</artifactId>
50
<version>${retorfit2-version}</version>
51
</dependency>
52
<dependency>
53
<groupId>com.squareup.retrofit2</groupId>
54
<artifactId>converter-jackson</artifactId>
55
<version>${retorfit2-version}</version>
56
</dependency>
57
<dependency>
58
<groupId>com.squareup.retrofit2</groupId>
59
<artifactId>adapter-rxjava</artifactId>
60
<version>${retorfit2-version}</version>
61
</dependency>
62
<dependency>
63
<groupId>com.alibaba</groupId>
64
<artifactId>fastjson</artifactId>
65
<version>${fastjson-version}</version>
66
</dependency>
67
<dependency>
68
<groupId>org.apache.commons</groupId>
69
<artifactId>commons-lang3</artifactId>
70
<version>${commons-lang3-version}</version>
71
</dependency>
72
<dependency>
73
<groupId>org.apache.commons</groupId>
74
<artifactId>commons-collections4</artifactId>
75
<version>${commons-collections4}</version>
76
</dependency>
77
<dependency>
78
<groupId>commons-codec</groupId>
79
<artifactId>commons-codec</artifactId>
80
<version>${commons-codec-version}</version>
81
</dependency>
82
<dependency>
83
<groupId>junit</groupId>
84
<artifactId>junit</artifactId>
85
<version>${junit-version}</version>
86
</dependency>
87
<dependency>
88
<groupId>com.google.guava</groupId>
89
<artifactId>guava</artifactId>
90
<version>${google-guava}</version>
91
</dependency>
92
<dependency>
93
<groupId>org.apache.commons</groupId>
94
<artifactId>commons-compress</artifactId>
95
<version>1.18</version>
96
</dependency>
97
<dependency>
98
<groupId>ch.qos.logback</groupId>
99
<artifactId>logback-classic</artifactId>
100
<version>1.3.0-alpha4</version>
101
</dependency>
102
</dependencies>
103
104
<build>
105
<plugins>
106
<plugin>
107
<groupId>org.apache.maven.plugins</groupId>
108
<artifactId>maven-compiler-plugin</artifactId>
109
<configuration>
110
<source>1.8</source>
111
<target>1.8</target>
112
</configuration>
113
</plugin>
114
<plugin>
115
<groupId>org.apache.maven.plugins</groupId>
116
<artifactId>maven-surefire-plugin</artifactId>
117
<configuration>
118
<testFailureIgnore>true</testFailureIgnore>
119
</configuration>
120
</plugin>
121
</plugins>
122
</build>
123
124
<profiles>
125
<profile>
126
<id>release</id>
127
<build>
128
<plugins>
129
<plugin>
130
<groupId>org.apache.maven.plugins</groupId>
131
<artifactId>maven-compiler-plugin</artifactId>
132
<version>3.7.0</version>
133
<configuration>
134
<source>1.8</source>
135
<target>1.8</target>
136
</configuration>
137
</plugin>
138
139
<plugin>
140
<groupId>org.apache.maven.plugins</groupId>
141
<artifactId>maven-source-plugin</artifactId>
142
<version>3.0.1</version>
143
<executions>
144
<execution>
145
<id>attach-sources</id>
146
<goals>
147
<goal>jar-no-fork</goal>
148
</goals>
149
</execution>
150
</executions>
151
</plugin>
152
<plugin>
153
<groupId>org.apache.maven.plugins</groupId>
154
<artifactId>maven-javadoc-plugin</artifactId>
155
<version>3.0.0-M1</version>
156
<executions>
157
<execution>
158
<id>attach-javadoc</id>
159
<phase>package</phase>
160
<goals>
161
<goal>jar</goal>
162
</goals>
163
<configuration>
164
<additionalparam>-Xdoclint:none</additionalparam>
165
</configuration>
166
</execution>
167
</executions>
168
</plugin>
169
170
</plugins>
171
</build>
172
<distributionManagement>
173
<snapshotRepository>
174
<id>ossrh</id>
175
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
176
</snapshotRepository>
177
<repository>
178
<id>ossrh</id>
179
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
180
</repository>
181
</distributionManagement>
182
</profile>
183
</profiles>
184
</project>
185
186