|
@@ -0,0 +1,470 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ 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>org.dromara</groupId>
|
|
|
+ <artifactId>ruoyi-vue-plus</artifactId>
|
|
|
+ <version>${revision}</version>
|
|
|
+
|
|
|
+ <name>RuoYi-Vue-Plus</name>
|
|
|
+ <url>https://gitee.com/dromara/RuoYi-Vue-Plus</url>
|
|
|
+ <description>RuoYi-Vue-Plus多租户管理系统</description>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <revision>5.1.2</revision>
|
|
|
+ <spring-boot.version>3.1.7</spring-boot.version>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
+ <java.version>17</java.version>
|
|
|
+ <spring-boot.mybatis>3.0.3</spring-boot.mybatis>
|
|
|
+ <springdoc.version>2.2.0</springdoc.version>
|
|
|
+ <therapi-javadoc.version>0.15.0</therapi-javadoc.version>
|
|
|
+ <poi.version>5.2.3</poi.version>
|
|
|
+ <easyexcel.version>3.3.3</easyexcel.version>
|
|
|
+ <velocity.version>2.3</velocity.version>
|
|
|
+ <satoken.version>1.37.0</satoken.version>
|
|
|
+ <mybatis-plus.version>3.5.4</mybatis-plus.version>
|
|
|
+ <p6spy.version>3.9.1</p6spy.version>
|
|
|
+ <hutool.version>5.8.22</hutool.version>
|
|
|
+ <okhttp.version>4.10.0</okhttp.version>
|
|
|
+ <spring-boot-admin.version>3.1.8</spring-boot-admin.version>
|
|
|
+ <redisson.version>3.24.3</redisson.version>
|
|
|
+ <lock4j.version>2.2.5</lock4j.version>
|
|
|
+ <dynamic-ds.version>4.2.0</dynamic-ds.version>
|
|
|
+ <alibaba-ttl.version>2.14.4</alibaba-ttl.version>
|
|
|
+ <powerjob.version>4.3.6</powerjob.version>
|
|
|
+ <mapstruct-plus.version>1.3.5</mapstruct-plus.version>
|
|
|
+ <mapstruct-plus.lombok.version>0.2.0</mapstruct-plus.lombok.version>
|
|
|
+ <lombok.version>1.18.30</lombok.version>
|
|
|
+ <bouncycastle.version>1.76</bouncycastle.version>
|
|
|
+ <justauth.version>1.16.6</justauth.version>
|
|
|
+ <!-- 离线IP地址定位库 -->
|
|
|
+ <ip2region.version>2.7.0</ip2region.version>
|
|
|
+
|
|
|
+ <!-- OSS 配置 -->
|
|
|
+ <aws-java-sdk-s3.version>1.12.600</aws-java-sdk-s3.version>
|
|
|
+ <!-- SMS 配置 -->
|
|
|
+ <sms4j.version>2.2.0</sms4j.version>
|
|
|
+ <!-- 限制框架中的fastjson版本 -->
|
|
|
+ <fastjson.version>1.2.83</fastjson.version>
|
|
|
+
|
|
|
+ <!-- 插件版本 -->
|
|
|
+ <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
|
|
|
+ <maven-war-plugin.version>3.2.2</maven-war-plugin.version>
|
|
|
+ <maven-compiler-plugin.verison>3.11.0</maven-compiler-plugin.verison>
|
|
|
+ <maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
|
|
+ <flatten-maven-plugin.version>1.3.0</flatten-maven-plugin.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <profiles>
|
|
|
+ <profile>
|
|
|
+ <id>local</id>
|
|
|
+ <properties>
|
|
|
+ <!-- 环境标识,需要与配置文件的名称相对应 -->
|
|
|
+ <profiles.active>local</profiles.active>
|
|
|
+ <logging.level>info</logging.level>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>dev</id>
|
|
|
+ <properties>
|
|
|
+ <!-- 环境标识,需要与配置文件的名称相对应 -->
|
|
|
+ <profiles.active>dev</profiles.active>
|
|
|
+ <logging.level>info</logging.level>
|
|
|
+ </properties>
|
|
|
+ <activation>
|
|
|
+ <!-- 默认环境 -->
|
|
|
+ <activeByDefault>true</activeByDefault>
|
|
|
+ </activation>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>prod</id>
|
|
|
+ <properties>
|
|
|
+ <profiles.active>prod</profiles.active>
|
|
|
+ <logging.level>warn</logging.level>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ </profiles>
|
|
|
+
|
|
|
+ <!-- 依赖声明 -->
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+ <!-- SpringBoot的依赖配置-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- hutool 的依赖配置-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-bom</artifactId>
|
|
|
+ <version>${hutool.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- JustAuth 的依赖配置-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>me.zhyd.oauth</groupId>
|
|
|
+ <artifactId>JustAuth</artifactId>
|
|
|
+ <version>${justauth.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- common 的依赖配置-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.dromara</groupId>
|
|
|
+ <artifactId>ruoyi-common-bom</artifactId>
|
|
|
+ <version>${revision}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springdoc</groupId>
|
|
|
+ <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
|
|
|
+ <version>${springdoc.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.therapi</groupId>
|
|
|
+ <artifactId>therapi-runtime-javadoc</artifactId>
|
|
|
+ <version>${therapi-javadoc.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>${lombok.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>${poi.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>easyexcel</artifactId>
|
|
|
+ <version>${easyexcel.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml-schemas</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- velocity代码生成使用模板 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
+ <artifactId>velocity-engine-core</artifactId>
|
|
|
+ <version>${velocity.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.dev33</groupId>
|
|
|
+ <artifactId>sa-token-spring-boot3-starter</artifactId>
|
|
|
+ <version>${satoken.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- Sa-Token 整合 jwt -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.dev33</groupId>
|
|
|
+ <artifactId>sa-token-jwt</artifactId>
|
|
|
+ <version>${satoken.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.dev33</groupId>
|
|
|
+ <artifactId>sa-token-core</artifactId>
|
|
|
+ <version>${satoken.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- dynamic-datasource 多数据源-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
|
|
|
+ <version>${dynamic-ds.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
+ <version>${spring-boot.mybatis}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-annotation</artifactId>
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- sql性能分析插件 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>p6spy</groupId>
|
|
|
+ <artifactId>p6spy</artifactId>
|
|
|
+ <version>${p6spy.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.squareup.okhttp3</groupId>
|
|
|
+ <artifactId>okhttp</artifactId>
|
|
|
+ <version>${okhttp.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.amazonaws</groupId>
|
|
|
+ <artifactId>aws-java-sdk-s3</artifactId>
|
|
|
+ <version>${aws-java-sdk-s3.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!--短信sms4j-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.dromara.sms4j</groupId>
|
|
|
+ <artifactId>sms4j-spring-boot-starter</artifactId>
|
|
|
+ <version>${sms4j.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>de.codecentric</groupId>
|
|
|
+ <artifactId>spring-boot-admin-starter-server</artifactId>
|
|
|
+ <version>${spring-boot-admin.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>de.codecentric</groupId>
|
|
|
+ <artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
+ <version>${spring-boot-admin.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--redisson-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.redisson</groupId>
|
|
|
+ <artifactId>redisson-spring-boot-starter</artifactId>
|
|
|
+ <version>${redisson.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>lock4j-redisson-spring-boot-starter</artifactId>
|
|
|
+ <version>${lock4j.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- PowerJob -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>tech.powerjob</groupId>
|
|
|
+ <artifactId>powerjob-worker-spring-boot-starter</artifactId>
|
|
|
+ <version>${powerjob.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>tech.powerjob</groupId>
|
|
|
+ <artifactId>powerjob-official-processors</artifactId>
|
|
|
+ <version>${powerjob.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>transmittable-thread-local</artifactId>
|
|
|
+ <version>${alibaba-ttl.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 加密包引入 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.bouncycastle</groupId>
|
|
|
+ <artifactId>bcprov-jdk15to18</artifactId>
|
|
|
+ <version>${bouncycastle.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.github.linpeilie</groupId>
|
|
|
+ <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
|
|
|
+ <version>${mapstruct-plus.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 离线IP地址定位库 ip2region -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.lionsoul</groupId>
|
|
|
+ <artifactId>ip2region</artifactId>
|
|
|
+ <version>${ip2region.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.dromara</groupId>
|
|
|
+ <artifactId>base-starter</artifactId>
|
|
|
+ <version>${revision}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.dromara</groupId>
|
|
|
+ <artifactId>ruoyi-system</artifactId>
|
|
|
+ <version>${revision}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <modules>
|
|
|
+ <module>base-starter</module>
|
|
|
+ <module>ruoyi-common</module>
|
|
|
+ <module>ruoyi-system</module>
|
|
|
+ <module>test</module>
|
|
|
+
|
|
|
+ </modules>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>${maven-compiler-plugin.verison}</version>
|
|
|
+ <configuration>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
+ <encoding>${project.build.sourceEncoding}</encoding>
|
|
|
+ <annotationProcessorPaths>
|
|
|
+ <path>
|
|
|
+ <groupId>com.github.therapi</groupId>
|
|
|
+ <artifactId>therapi-runtime-javadoc-scribe</artifactId>
|
|
|
+ <version>${therapi-javadoc.version}</version>
|
|
|
+ </path>
|
|
|
+ <path>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>${lombok.version}</version>
|
|
|
+ </path>
|
|
|
+ <path>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ </path>
|
|
|
+ <path>
|
|
|
+ <groupId>io.github.linpeilie</groupId>
|
|
|
+ <artifactId>mapstruct-plus-processor</artifactId>
|
|
|
+ <version>${mapstruct-plus.version}</version>
|
|
|
+ </path>
|
|
|
+ <path>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok-mapstruct-binding</artifactId>
|
|
|
+ <version>${mapstruct-plus.lombok.version}</version>
|
|
|
+ </path>
|
|
|
+ </annotationProcessorPaths>
|
|
|
+ <compilerArgs>
|
|
|
+ <arg>-parameters</arg>
|
|
|
+ </compilerArgs>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <!-- 单元测试使用 -->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <version>${maven-surefire-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <!-- 根据打包环境执行对应的@Tag测试方法 -->
|
|
|
+ <groups>${profiles.active}</groups>
|
|
|
+ <!-- 排除标签 -->
|
|
|
+ <excludedGroups>exclude</excludedGroups>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <!-- 统一版本号管理 -->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>flatten-maven-plugin</artifactId>
|
|
|
+ <version>${flatten-maven-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <updatePomFile>true</updatePomFile>
|
|
|
+ <flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>flatten</id>
|
|
|
+ <phase>process-resources</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>flatten</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ <execution>
|
|
|
+ <id>flatten.clean</id>
|
|
|
+ <phase>clean</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>clean</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
+ <!-- 关闭过滤 -->
|
|
|
+ <filtering>false</filtering>
|
|
|
+ </resource>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
+ <!-- 引入所有 匹配文件进行过滤 -->
|
|
|
+ <includes>
|
|
|
+ <include>application*</include>
|
|
|
+ <include>bootstrap*</include>
|
|
|
+ <include>banner*</include>
|
|
|
+ </includes>
|
|
|
+ <!-- 启用过滤 即该资源中的变量将会被过滤器中的值替换 -->
|
|
|
+ <filtering>true</filtering>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ </build>
|
|
|
+
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>public</id>
|
|
|
+ <name>huawei nexus</name>
|
|
|
+ <url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </releases>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>public</id>
|
|
|
+ <name>huawei nexus</name>
|
|
|
+ <url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </releases>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>false</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
+
|
|
|
+</project>
|
|
|
+
|
|
|
+
|