提交 | 用户 | 时间
|
0ca254
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
A |
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 |
<modelVersion>4.0.0</modelVersion> |
|
6 |
<parent> |
|
7 |
<groupId>com.jcdm</groupId> |
|
8 |
<artifactId>jcdm</artifactId> |
|
9 |
<version>3.8.6</version> |
|
10 |
</parent> |
|
11 |
|
|
12 |
<artifactId>jcdm-main</artifactId> |
|
13 |
|
|
14 |
<properties> |
|
15 |
<maven.compiler.source>17</maven.compiler.source> |
|
16 |
<maven.compiler.target>17</maven.compiler.target> |
|
17 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
18 |
</properties> |
|
19 |
|
|
20 |
<dependencies> |
|
21 |
<dependency> |
|
22 |
<groupId>com.jcdm</groupId> |
|
23 |
<artifactId>jcdm-common</artifactId> |
|
24 |
<exclusions> |
|
25 |
<exclusion> |
|
26 |
<artifactId>mybatis-spring</artifactId> |
|
27 |
<groupId>org.mybatis</groupId> |
|
28 |
</exclusion> |
|
29 |
<exclusion> |
|
30 |
<artifactId>mybatis</artifactId> |
|
31 |
<groupId>org.mybatis</groupId> |
|
32 |
</exclusion> |
|
33 |
<exclusion> |
|
34 |
<artifactId>jsqlparser</artifactId> |
|
35 |
<groupId>com.github.jsqlparser</groupId> |
|
36 |
</exclusion> |
|
37 |
</exclusions> |
|
38 |
</dependency> |
|
39 |
|
|
40 |
<dependency> |
|
41 |
<groupId>org.projectlombok</groupId> |
|
42 |
<artifactId>lombok</artifactId> |
|
43 |
<optional>true</optional> |
|
44 |
</dependency> |
|
45 |
<dependency> |
|
46 |
<groupId>commons-httpclient</groupId> |
|
47 |
<artifactId>commons-httpclient</artifactId> |
|
48 |
<version>3.1</version> |
|
49 |
</dependency> |
|
50 |
<dependency> |
|
51 |
<groupId>cn.hutool</groupId> |
|
52 |
<artifactId>hutool-all</artifactId> |
|
53 |
<version>5.7.4</version> |
|
54 |
</dependency> |
|
55 |
|
|
56 |
<dependency> |
|
57 |
<groupId>com.google.code.gson</groupId> |
|
58 |
<artifactId>gson</artifactId> |
|
59 |
<version>2.10.1</version> |
|
60 |
</dependency> |
|
61 |
|
|
62 |
<!-- 系统模块--> |
|
63 |
<dependency> |
|
64 |
<groupId>com.jcdm</groupId> |
|
65 |
<artifactId>jcdm-framework</artifactId> |
|
66 |
</dependency> |
|
67 |
|
|
68 |
<!-- opc start--> |
|
69 |
<dependency> |
|
70 |
<groupId>com.kangaroohy</groupId> |
|
71 |
<artifactId>milo-spring-boot-starter</artifactId> |
|
72 |
<version>3.0.4</version> |
|
73 |
</dependency> |
|
74 |
<!-- opc end--> |
|
75 |
|
|
76 |
<dependency> |
|
77 |
<groupId>com.jcdm</groupId> |
|
78 |
<artifactId>jcdm-quartz</artifactId> |
|
79 |
</dependency> |
|
80 |
<dependency> |
|
81 |
<groupId>org.mybatis</groupId> |
|
82 |
<artifactId>mybatis</artifactId> |
|
83 |
<version>3.5.13</version> |
|
84 |
<scope>compile</scope> |
|
85 |
</dependency> |
|
86 |
</dependencies> |
|
87 |
|
|
88 |
</project> |