2022-02-09 20:30:19 +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/maven-v4_0_0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
<artifactId>sa-token-parent</artifactId>
|
2022-03-06 17:36:13 +08:00
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2022-02-09 20:30:19 +08:00
|
|
|
|
</parent>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
|
|
<!-- Sa-Token 单元测试合集 -->
|
|
|
|
|
<name>sa-token-test</name>
|
|
|
|
|
<artifactId>sa-token-test</artifactId>
|
|
|
|
|
<description>sa-token-test</description>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 所有子模块 -->
|
|
|
|
|
<modules>
|
2022-08-31 14:11:14 +08:00
|
|
|
|
<!-- <module>sa-token-core-test</module> -->
|
2025-03-21 00:47:55 +08:00
|
|
|
|
<module>sa-token-springboot-test</module>
|
2022-08-31 14:11:14 +08:00
|
|
|
|
<!-- <module>sa-token-springboot-integrate-test</module> -->
|
2022-02-10 01:35:09 +08:00
|
|
|
|
<module>sa-token-jwt-test</module>
|
2025-03-21 00:47:55 +08:00
|
|
|
|
<module>sa-token-json-test</module>
|
2025-03-21 02:05:06 +08:00
|
|
|
|
<module>sa-token-serializer-test</module>
|
2022-02-09 20:30:19 +08:00
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- test -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2022-10-27 23:53:17 +08:00
|
|
|
|
<version>2.5.12</version>
|
2022-02-09 20:30:19 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- config -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
2022-08-31 14:11:14 +08:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- 单元测试报告生成 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
|
<version>0.8.6</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>prepare-agent</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>report-aggregate</id>
|
|
|
|
|
<phase>test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>report-aggregate</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.22.2</version>
|
|
|
|
|
<configuration>
|
2022-09-02 21:02:39 +08:00
|
|
|
|
<!-- 命令行执行 mvn test 时默认字符集为GBK,与项目设置的utf-8造成冲突,所以这里需要指定字符集为utf-8 -->
|
|
|
|
|
<argLine>${argLine} -Xms256m -Xmx2048m -Dfile.encoding=utf-8</argLine>
|
2022-08-31 14:11:14 +08:00
|
|
|
|
<forkCount>1</forkCount>
|
|
|
|
|
<runOrder>random</runOrder>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2022-02-09 20:30:19 +08:00
|
|
|
|
</project>
|