forked from Dreampie/Resty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
44 lines (37 loc) · 1.34 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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>resty</artifactId>
<groupId>cn.dreampie</groupId>
<version>1.3.0.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>resty-httpclient</artifactId>
<name>resty-httpclient</name>
<packaging>jar</packaging>
<version>${parent.version}</version>
<url>https://github.com/Dreampie/${parent.name}</url>
<description>Resty java httpClient</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<resty.version>${parent.version}</resty.version>
<fastjson.version>1.2.5</fastjson.version>
<logback.version>1.1.2</logback.version>
</properties>
<dependencies>
<dependency>
<groupId>cn.dreampie</groupId>
<artifactId>resty-common</artifactId>
<version>${resty.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.name}-v${project.version}</finalName>
</build>
</project>