2025-11-20 13:30:33 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>org.nl</groupId>
|
|
|
|
|
|
<artifactId>nl-robot</artifactId>
|
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>nl-business-sys</artifactId>
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<description>
|
|
|
|
|
|
系统模块
|
|
|
|
|
|
用户,权限,菜单,代码生成器...(不在做区分,统一放在此模块)
|
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.nl</groupId>
|
|
|
|
|
|
<artifactId>nl-business-api</artifactId>
|
|
|
|
|
|
</dependency>
|
2026-01-04 09:34:07 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- easyexcel -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Sa-token -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
|
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2026-01-30 17:16:46 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.github.eternalstone</groupId>
|
|
|
|
|
|
<artifactId>captcha-spring-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2026-02-01 18:10:37 +08:00
|
|
|
|
<!-- 解析客户端操作系统、浏览器信息 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>nl.basjes.parse.useragent</groupId>
|
|
|
|
|
|
<artifactId>yauaa</artifactId>
|
|
|
|
|
|
</dependency>
|
2026-01-30 17:16:46 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- Sa-Token 插件:整合SSO -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
|
<artifactId>sa-token-sso</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
|
|
<artifactId>commons-beanutils-core</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Sa-Token 整合 jwt -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
|
<artifactId>sa-token-jwt</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alicp.jetcache</groupId>
|
|
|
|
|
|
<artifactId>jetcache-starter-redis</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- spring boot 缓存 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
|
|
<artifactId>redisson-spring-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 获取系统信息 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.oshi</groupId>
|
|
|
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-11-20 13:30:33 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|