春风项目四线(合箱线、总装线)
jiang
2024-01-15 64a177b3ee0f2b4a33b1a119d6c2d8451cc7065f
提交 | 用户 | 时间
fd2207 1 <?xml version="1.0" encoding="UTF-8"?>
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
e4c3b0 40         <!--Server SDK依赖-->
Y 41         <dependency>
42             <groupId>org.eclipse.milo</groupId>
43             <artifactId>sdk-server</artifactId>
44             <version>0.3.6</version>
45         </dependency>
46
47         <!--Client SDK依赖-->
48         <dependency>
49             <groupId>org.eclipse.milo</groupId>
50             <artifactId>sdk-client</artifactId>
51             <version>0.3.6</version>
52         </dependency>
53
54         <dependency>
55             <groupId>org.eclipse.milo</groupId>
56             <artifactId>stack-client</artifactId>
57             <version>0.3.6</version>
58         </dependency>
59
60         <dependency>
61             <groupId>org.eclipse.milo</groupId>
62             <artifactId>stack-client</artifactId>
63             <version>0.3.6</version>
64         </dependency>
65
66         <dependency>
67             <groupId>org.eclipse.milo</groupId>
68             <artifactId>stack-server</artifactId>
69             <version>0.3.6</version>
70         </dependency>
71
fd2207 72         <dependency>
73             <groupId>org.projectlombok</groupId>
74             <artifactId>lombok</artifactId>
75             <optional>true</optional>
76         </dependency>
77     </dependencies>
78
79 </project>