cl
2024-01-22 314bc7a1733856bd82c9d99bdfa27b34a4a762c3
提交 | 用户 | 时间
71e81e 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
7     <parent>
8         <groupId>cn.stylefeng</groupId>
9         <artifactId>guns-base-support</artifactId>
10         <version>1.0.0</version>
11         <relativePath>../pom.xml</relativePath>
12     </parent>
13
14     <artifactId>guns-base-timers</artifactId>
15
16     <packaging>jar</packaging>
17
18     <dependencies>
19
20         <!--基础组件-->
21         <dependency>
22             <groupId>cn.stylefeng</groupId>
23             <artifactId>guns-base</artifactId>
24             <version>1.0.0</version>
25         </dependency>
26
27         <!-- xxl-job-core -->
28         <dependency>
29             <groupId>com.xuxueli</groupId>
30             <artifactId>xxl-job-core</artifactId>
31             <version>2.0.2</version>
32         </dependency>
33
34     </dependencies>
35
36     <build>
37         <finalName>${project.artifactId}</finalName>
38     </build>
39
40 </project>