提交 | 用户 | 时间
|
cb8c71
|
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-plat</artifactId> |
|
8 |
<version>${revision}</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
b97590
|
11 |
<artifactId>iailab-plat-sdk</artifactId> |
cb8c71
|
12 |
<packaging>jar</packaging> |
H |
13 |
|
|
14 |
<name>${project.artifactId}</name> |
|
15 |
<description> |
02fed5
|
16 |
工业互联网提供的授权sdk |
cb8c71
|
17 |
</description> |
H |
18 |
|
|
19 |
<dependencies> |
|
20 |
<dependency> |
|
21 |
<groupId>org.apache.httpcomponents</groupId> |
|
22 |
<artifactId>httpclient</artifactId> |
|
23 |
<version>4.5.13</version> |
|
24 |
</dependency> |
|
25 |
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --> |
|
26 |
<dependency> |
|
27 |
<groupId>com.alibaba</groupId> |
|
28 |
<artifactId>fastjson</artifactId> |
|
29 |
<version>2.0.55</version> |
|
30 |
</dependency> |
|
31 |
<dependency> |
|
32 |
<groupId>com.iailab</groupId> |
|
33 |
<artifactId>iailab-common</artifactId> |
|
34 |
<version>${revision}</version> |
|
35 |
</dependency> |
|
36 |
<dependency> |
|
37 |
<groupId>org.springframework</groupId> |
|
38 |
<artifactId>spring-context</artifactId> |
|
39 |
</dependency> |
|
40 |
<dependency> |
|
41 |
<groupId>org.hibernate.validator</groupId> |
|
42 |
<artifactId>hibernate-validator</artifactId> |
|
43 |
</dependency> |
|
44 |
<dependency> |
|
45 |
<groupId>com.iailab</groupId> |
|
46 |
<artifactId>iailab-common-test</artifactId> |
|
47 |
</dependency> |
b233cc
|
48 |
<dependency> |
H |
49 |
<groupId>org.springframework.boot</groupId> |
|
50 |
<artifactId>spring-boot-starter-validation</artifactId> |
|
51 |
</dependency> |
cb8c71
|
52 |
</dependencies> |
H |
53 |
|
|
54 |
<build> |
|
55 |
<plugins> |
|
56 |
<plugin> |
|
57 |
<groupId>org.apache.maven.plugins</groupId> |
741870
|
58 |
<artifactId>maven-assembly-plugin</artifactId> |
H |
59 |
<version>3.6.0</version> |
|
60 |
<executions> |
|
61 |
<execution> |
|
62 |
<phase>package</phase> |
|
63 |
<goals> |
|
64 |
<goal>single</goal> |
|
65 |
</goals> |
|
66 |
<configuration> |
|
67 |
<descriptorRefs> |
|
68 |
<!-- 使用预定义的打包方式:将所有内容合并到 JAR 中 --> |
|
69 |
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
70 |
</descriptorRefs> |
|
71 |
<!-- 指定主类 --> |
|
72 |
<archive> |
|
73 |
<manifest> |
|
74 |
<mainClass>com.iailab.sdk.IailabPlatSdkMain</mainClass> |
|
75 |
</manifest> |
|
76 |
</archive> |
|
77 |
</configuration> |
|
78 |
</execution> |
|
79 |
</executions> |
cb8c71
|
80 |
</plugin> |
H |
81 |
</plugins> |
|
82 |
</build> |
|
83 |
|
741870
|
84 |
<!-- <build>--> |
H |
85 |
<!-- <plugins>--> |
|
86 |
<!-- <plugin>--> |
|
87 |
<!-- <groupId>org.apache.maven.plugins</groupId>--> |
|
88 |
<!-- <artifactId>maven-jar-plugin</artifactId>--> |
|
89 |
<!-- <version>3.3.0</version>--> |
|
90 |
<!-- <configuration>--> |
|
91 |
<!-- <archive>--> |
|
92 |
<!-- <manifest>--> |
|
93 |
<!-- <addClasspath>true</addClasspath>--> |
|
94 |
<!-- <classpathPrefix>lib/</classpathPrefix>--> |
|
95 |
<!-- <mainClass>com.iailab.sdk.IailabPlatSdkMain</mainClass>--> |
|
96 |
<!-- </manifest>--> |
|
97 |
<!-- </archive>--> |
|
98 |
<!-- </configuration>--> |
|
99 |
<!-- </plugin>--> |
|
100 |
<!-- </plugins>--> |
|
101 |
<!-- </build>--> |
|
102 |
|
cb8c71
|
103 |
</project> |