2022-08-08 09:01:39 +00:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-03-25 06:33:56 +00:00
|
|
|
|
<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>
|
2022-03-25 11:01:17 +00:00
|
|
|
|
<artifactId>likeadmin-java</artifactId>
|
2022-08-19 01:39:25 +00:00
|
|
|
|
<groupId>org.mdd</groupId>
|
2022-06-09 09:27:11 +00:00
|
|
|
|
<version>1.0.0</version>
|
2022-03-25 06:33:56 +00:00
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 模块信息 -->
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<artifactId>like-admin</artifactId>
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 项目管理 -->
|
|
|
|
|
|
<dependencies>
|
2022-11-15 14:25:17 +00:00
|
|
|
|
<!-- 全局工具 -->
|
2022-03-25 06:33:56 +00:00
|
|
|
|
<dependency>
|
2022-08-19 01:39:25 +00:00
|
|
|
|
<groupId>org.mdd</groupId>
|
2022-03-25 06:33:56 +00:00
|
|
|
|
<artifactId>like-common</artifactId>
|
|
|
|
|
|
</dependency>
|
2022-11-15 14:25:17 +00:00
|
|
|
|
|
|
|
|
|
|
<!-- 代码生成 -->
|
2022-06-10 11:02:29 +00:00
|
|
|
|
<dependency>
|
2022-08-19 01:39:25 +00:00
|
|
|
|
<groupId>org.mdd</groupId>
|
2022-06-10 11:02:29 +00:00
|
|
|
|
<artifactId>like-generator</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
</dependency>
|
2022-11-15 14:25:17 +00:00
|
|
|
|
|
2023-01-17 10:02:55 +00:00
|
|
|
|
<!-- 验证码 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.penggle</groupId>
|
|
|
|
|
|
<artifactId>kaptcha</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2022-11-15 14:25:17 +00:00
|
|
|
|
<!-- SaToken -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
|
<artifactId>sa-token-spring-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
2022-11-16 03:35:52 +00:00
|
|
|
|
|
2022-12-02 06:14:34 +00:00
|
|
|
|
<!-- SaToken-Redis -->
|
2022-11-16 03:35:52 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
|
<artifactId>sa-token-dao-redis-jackson</artifactId>
|
2022-12-02 06:14:34 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Quartz-Scheduler -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
|
<artifactId>quartz</artifactId>
|
2022-11-16 03:35:52 +00:00
|
|
|
|
</dependency>
|
2022-03-25 06:33:56 +00:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
2025-11-24 08:40:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
2022-03-25 06:33:56 +00:00
|
|
|
|
<!-- 插件管理 -->
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2022-11-29 08:57:15 +00:00
|
|
|
|
<version>2.6.4</version>
|
2022-03-25 06:33:56 +00:00
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|