2023-12-20 19:55:07 +08:00
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.7.14</version>
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
|
|
|
<groupId>com.jsl</groupId>
|
|
|
|
<artifactId>oa</artifactId>
|
2024-01-13 16:22:01 +08:00
|
|
|
<version>1.1.0</version>
|
2023-12-20 19:55:07 +08:00
|
|
|
<name>JSL_OrganizeInternalOA</name>
|
|
|
|
<description>JSL_OrganizeInternalOA</description>
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-01-13 08:19:07 +08:00
|
|
|
<!-- Lombok -->
|
2023-12-20 19:55:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<scope>annotationProcessor</scope>
|
|
|
|
</dependency>
|
2024-01-13 08:19:07 +08:00
|
|
|
<!-- SpringBoot Web -->
|
2023-12-20 19:55:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2023-12-20 20:24:14 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
</dependency>
|
2024-01-13 08:19:07 +08:00
|
|
|
<!-- MySQL -->
|
2023-12-20 20:24:14 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2024-01-13 08:19:07 +08:00
|
|
|
<!-- BCrypt 校验 -->
|
2023-12-20 20:24:14 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mindrot</groupId>
|
|
|
|
<artifactId>jbcrypt</artifactId>
|
|
|
|
<version>0.4</version>
|
|
|
|
</dependency>
|
2024-01-13 08:19:07 +08:00
|
|
|
<!-- SpringBoot Validation(校验) -->
|
2023-12-20 22:24:06 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
<version>3.1.5</version>
|
|
|
|
</dependency>
|
2024-01-13 08:19:07 +08:00
|
|
|
<!-- SpringBoot Aop -->
|
2023-12-21 00:21:19 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
2024-01-13 08:19:07 +08:00
|
|
|
<!-- Shiro -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
2024-01-14 17:46:07 +08:00
|
|
|
<artifactId>shiro-spring-boot-starter</artifactId>
|
2024-01-13 08:19:07 +08:00
|
|
|
<version>1.9.1</version>
|
|
|
|
</dependency>
|
2024-01-14 17:46:07 +08:00
|
|
|
<!-- Jwt Token -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
|
|
|
<version>0.11.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
|
|
|
<version>0.11.3</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
<version>0.11.3</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2024-01-13 08:19:07 +08:00
|
|
|
<!-- SpringBoot Test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
<artifactId>mybatis-spring-boot-starter-test</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- SpringBoot Redis -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
2024-01-15 21:38:40 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>24.1.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- SpringBoot Mail -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- Gson -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</dependency>
|
2023-12-20 19:55:07 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|