1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?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>jnpf-boot-common</artifactId>
- <groupId>com.jnpf</groupId>
- <version>5.2.0-RELEASE</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jnpf-common-auth</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.jnpf</groupId>
- <artifactId>jnpf-common-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-jwt</artifactId>
- <exclusions>
- <exclusion>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-jwt</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-redis-jackson</artifactId>
- <!--<exclusions>
- <exclusion>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <groupId>org.springframework.boot</groupId>
- </exclusion>
- </exclusions>-->
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>boot3</id>
- <activation>
- <jdk>[17,)</jdk>
- </activation>
- <dependencies>
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-spring-boot3-starter</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>boot2</id>
- <activation>
- <jdk>(,17)</jdk>
- </activation>
- <dependencies>
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-spring-boot-starter</artifactId>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
- </project>
|