You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
5.0 KiB
152 lines
5.0 KiB
<?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>application-tenant</artifactId> |
|
<groupId>apelet</groupId> |
|
<version>1.0.0</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>tenant-admin</artifactId> |
|
<version>1.0.0</version> |
|
<name>tenant-admin</name> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>com.anji-plus</groupId> |
|
<artifactId>spring-boot-starter-captcha</artifactId> |
|
<version>${ajcaptcha.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-qy</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-redis</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-ext</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-dict</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-datafilter</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-mobile</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-core</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-log</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-datasync</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-aliyun-oss</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-dbutil</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-swagger</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-generator</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-eas</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-online</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-generator</artifactId> |
|
<version>${mybatisplus.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>cn.afterturn</groupId> |
|
<artifactId>easypoi-base</artifactId> |
|
<version>4.4.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>cn.afterturn</groupId> |
|
<artifactId>easypoi-web</artifactId> |
|
<version>4.4.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>cn.afterturn</groupId> |
|
<artifactId>easypoi-annotation</artifactId> |
|
<version>4.4.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jetbrains</groupId> |
|
<artifactId>annotations</artifactId> |
|
<version>24.0.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.xuxueli</groupId> |
|
<artifactId>xxl-job-core</artifactId> |
|
<version>2.3.1</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-quartz</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.quartz-scheduler</groupId> |
|
<artifactId>quartz</artifactId> |
|
<version>2.3.2</version> <!-- 确保使用最新的稳定版本 --> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<version>${spring-boot.version}</version> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project> |