2021-05-30 21:24:04 +08: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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
<artifactId>sa-token-demo-solon</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
2023-04-29 07:12:11 +08:00
|
|
|
|
<!-- Solon -->
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.noear</groupId>
|
|
|
|
|
<artifactId>solon-parent</artifactId>
|
2024-12-08 11:15:23 +08:00
|
|
|
|
<version>3.0.4</version>
|
2023-04-29 07:12:11 +08:00
|
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
2023-04-29 22:10:14 +08:00
|
|
|
|
|
2022-10-22 05:18:08 +08:00
|
|
|
|
<!-- 定义 Sa-Token 版本号 -->
|
2021-05-30 21:24:04 +08:00
|
|
|
|
<properties>
|
2024-08-25 11:46:43 +08:00
|
|
|
|
<java.version>17</java.version>
|
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
|
<maven.compiler.traget>17</maven.compiler.traget>
|
2025-03-21 14:22:00 +08:00
|
|
|
|
<sa-token.version>1.41.0</sa-token.version>
|
2023-01-05 19:20:21 +08:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2021-05-30 21:24:04 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2022-07-07 18:22:19 +08:00
|
|
|
|
<!-- Solon 依赖 -->
|
2021-05-30 21:24:04 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.noear</groupId>
|
|
|
|
|
<artifactId>solon-web</artifactId>
|
|
|
|
|
</dependency>
|
2022-11-14 16:46:24 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.noear</groupId>
|
2023-07-04 10:20:48 +08:00
|
|
|
|
<artifactId>solon.logging.simple</artifactId>
|
2022-11-14 16:46:24 +08:00
|
|
|
|
</dependency>
|
2021-05-30 21:24:04 +08:00
|
|
|
|
|
2022-10-21 11:27:29 +08:00
|
|
|
|
<!-- Sa-Token 权限认证, 在线文档:https://sa-token.cc/ -->
|
2021-05-30 21:24:04 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
<artifactId>sa-token-solon-plugin</artifactId>
|
2022-10-22 05:18:08 +08:00
|
|
|
|
<version>${sa-token.version}</version>
|
2021-05-30 21:24:04 +08:00
|
|
|
|
</dependency>
|
2024-05-11 15:37:02 +08:00
|
|
|
|
|
2021-05-30 21:24:04 +08:00
|
|
|
|
<!-- sa-token整合redis (使用jdk默认序列化方式) -->
|
2023-07-04 10:20:48 +08:00
|
|
|
|
<dependency>
|
2021-05-30 21:24:04 +08:00
|
|
|
|
<groupId>cn.dev33</groupId>
|
2023-05-14 01:32:49 +08:00
|
|
|
|
<artifactId>sa-token-redisx</artifactId>
|
2022-10-22 05:18:08 +08:00
|
|
|
|
<version>${sa-token.version}</version>
|
2023-07-04 10:20:48 +08:00
|
|
|
|
</dependency>
|
2021-05-30 21:24:04 +08:00
|
|
|
|
|
|
|
|
|
<!-- hutool工具类,用来生成雪花算法唯一id -->
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
<version>5.5.4</version>
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|