| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>smart-steward</artifactId>
- <groupId>com.smartSteward</groupId>
- <version>3.9.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>smart-steward-service</artifactId>
- <description>
- system系统模块
- </description>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.smartSteward</groupId>
- <artifactId>smart-steward-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.smartSteward</groupId>
- <artifactId>smart-steward-entity</artifactId>
- </dependency>
- <dependency>
- <groupId>com.smartSteward</groupId>
- <artifactId>smart-steward-mapper</artifactId>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- </dependency>
- <!-- velocity代码生成使用模板 -->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-core</artifactId>
- <version>5.8.22</version>
- </dependency>
- <!-- xxl job -->
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-job-core</artifactId>
- <version>2.5.0</version>
- </dependency>
- </dependencies>
- </project>
|