提交 | 用户 | 时间
|
e7c126
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
H |
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 |
<parent> |
|
6 |
<groupId>com.iailab</groupId> |
|
7 |
<artifactId>iailab-framework</artifactId> |
|
8 |
<version>${revision}</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
<artifactId>iailab-common-biz-ip</artifactId> |
|
12 |
<packaging>jar</packaging> |
|
13 |
|
|
14 |
<name>${project.artifactId}</name> |
|
15 |
<description>IP 拓展,支持如下功能: |
|
16 |
1. IP 功能:查询 IP 对应的城市信息 |
|
17 |
基于 https://gitee.com/lionsoul/ip2region 实现 |
|
18 |
2. 城市功能:查询城市编码对应的城市信息 |
|
19 |
基于 https://github.com/modood/Administrative-divisions-of-China 实现 |
|
20 |
</description> |
4d4165
|
21 |
<url>http://172.16.8.100:8888/summary/iailab-plat.git</url> |
e7c126
|
22 |
|
H |
23 |
<dependencies> |
|
24 |
<dependency> |
|
25 |
<groupId>com.iailab</groupId> |
|
26 |
<artifactId>iailab-common</artifactId> |
|
27 |
</dependency> |
|
28 |
|
|
29 |
<!-- IP地址检索 --> |
|
30 |
<dependency> |
|
31 |
<groupId>org.lionsoul</groupId> |
|
32 |
<artifactId>ip2region</artifactId> |
|
33 |
</dependency> |
|
34 |
|
|
35 |
<dependency> |
|
36 |
<groupId>org.projectlombok</groupId> |
|
37 |
<artifactId>lombok</artifactId> |
|
38 |
</dependency> |
|
39 |
|
|
40 |
<dependency> |
|
41 |
<groupId>org.slf4j</groupId> |
|
42 |
<artifactId>slf4j-api</artifactId> |
|
43 |
<scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 --> |
|
44 |
</dependency> |
|
45 |
|
|
46 |
<!-- Test 测试相关 --> |
|
47 |
<dependency> |
|
48 |
<groupId>com.iailab</groupId> |
|
49 |
<artifactId>iailab-common-test</artifactId> |
|
50 |
<scope>test</scope> |
|
51 |
</dependency> |
|
52 |
</dependencies> |
|
53 |
|
|
54 |
<build> |
|
55 |
<plugins> |
|
56 |
<plugin> |
|
57 |
<groupId>org.springframework.boot</groupId> |
|
58 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
59 |
</plugin> |
|
60 |
<plugin> |
|
61 |
<groupId>org.apache.maven.plugins</groupId> |
|
62 |
<artifactId>maven-assembly-plugin</artifactId> |
|
63 |
<version>3.3.0</version> |
|
64 |
<executions> |
|
65 |
<execution> |
|
66 |
<phase>package</phase> |
|
67 |
<goals> |
|
68 |
<goal>single</goal> |
|
69 |
</goals> |
|
70 |
</execution> |
|
71 |
</executions> |
|
72 |
<configuration> |
|
73 |
<descriptorRefs> |
|
74 |
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
75 |
</descriptorRefs> |
|
76 |
</configuration> |
|
77 |
</plugin> |
|
78 |
</plugins> |
|
79 |
</build> |
|
80 |
|
|
81 |
</project> |