123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- <?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>com.taais</groupId>
- <artifactId>taais</artifactId>
- <version>${revision}</version>
- <name>taais</name>
- <description>taais</description>
- <properties>
- <revision>1.1.0</revision>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>21</java.version>
- <spring-boot.version>3.2.1</spring-boot.version>
- <mybatis-flex.version>1.7.7</mybatis-flex.version>
- <satoken.version>1.37.0</satoken.version>
- <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
- <HikariCP.version>5.0.1</HikariCP.version>
- <bitwalker.version>1.21</bitwalker.version>
- <kaptcha.version>2.3.3</kaptcha.version>
- <pagehelper.version>6.1.0</pagehelper.version>
- <fastjson.version>2.0.43</fastjson.version>
- <oshi.version>6.4.8</oshi.version>
- <commons.collections.version>3.2.2</commons.collections.version>
- <poi.version>5.2.3</poi.version>
- <easyexcel.version>3.3.3</easyexcel.version>
- <velocity.version>2.3</velocity.version>
- <jwt.version>0.9.1</jwt.version>
- <servlet-api.version>6.0.0</servlet-api.version>
- <guava.version>32.1.1-jre</guava.version>
- <flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
- <springdoc.version>2.3.0</springdoc.version>
- <springdoc-openapi-starter-common.version>2.3.0</springdoc-openapi-starter-common.version>
- <therapi-runtime-javadoc.version>0.15.0</therapi-runtime-javadoc.version>
- <snakeyaml.version>2.2</snakeyaml.version>
- <lombok.version>1.18.30</lombok.version>
- <mapstruct-plus.version>1.3.6</mapstruct-plus.version>
- <mapstruct-plus.lombok.version>0.2.0</mapstruct-plus.lombok.version>
- <hutool.version>5.8.24</hutool.version>
- <redisson.version>3.26.0</redisson.version>
- <lock4j.version>2.2.7</lock4j.version>
- <alibaba-ttl.version>2.14.4</alibaba-ttl.version>
- <spring-boot-admin.version>3.2.0</spring-boot-admin.version>
- <powerjob.version>4.3.6</powerjob.version>
- <!-- 离线IP地址定位库 -->
- <ip2region.version>2.7.0</ip2region.version>
- <!-- OSS 配置 -->
- <aws-java-sdk-s3.version>1.12.600</aws-java-sdk-s3.version>
- <!-- 加解密依赖库 -->
- <bcprov-jdk.version>1.77</bcprov-jdk.version>
- <!-- SMS 配置 -->
- <sms4j.version>3.1.0</sms4j.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>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>
- <!-- common 的依赖配置-->
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-common-bom</artifactId>
- <version>${revision}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!--测试框架-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <version>${spring-boot.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- 数据库连接池-->
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- <version>${HikariCP.version}</version>
- </dependency>
- <!-- mybatis-flex -->
- <dependency>
- <groupId>com.mybatis-flex</groupId>
- <artifactId>mybatis-flex-spring-boot3-starter</artifactId>
- <version>${mybatis-flex.version}</version>
- </dependency>
- <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
- <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>
- <!-- servlet包 -->
- <dependency>
- <groupId>jakarta.servlet</groupId>
- <artifactId>jakarta.servlet-api</artifactId>
- <version>${servlet-api.version}</version>
- </dependency>
- <!-- 解析客户端操作系统、浏览器等 -->
- <dependency>
- <groupId>eu.bitwalker</groupId>
- <artifactId>UserAgentUtils</artifactId>
- <version>${bitwalker.version}</version>
- </dependency>
- <!-- pagehelper 分页插件 -->
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper</artifactId>
- <version>${pagehelper.version}</version>
- </dependency>
- <!-- 获取系统信息 -->
- <dependency>
- <groupId>com.github.oshi</groupId>
- <artifactId>oshi-core</artifactId>
- <version>${oshi.version}</version>
- </dependency>
- <!-- excel工具 -->
- <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>
- <!-- collections工具类 -->
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>${commons.collections.version}</version>
- </dependency>
- <!-- 阿里JSON解析器 -->
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <!-- Token生成与解析-->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>${jwt.version}</version>
- </dependency>
- <!-- 验证码 -->
- <dependency>
- <groupId>pro.fessional</groupId>
- <artifactId>kaptcha</artifactId>
- <version>${kaptcha.version}</version>
- </dependency>
- <!-- guava -->
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>${guava.version}</version>
- </dependency>
- <!-- springdoc -->
- <dependency>
- <groupId>org.springdoc</groupId>
- <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
- <version>${springdoc.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springdoc</groupId>
- <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
- <version>${springdoc.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springdoc</groupId>
- <artifactId>springdoc-openapi-starter-common</artifactId>
- <version>${springdoc-openapi-starter-common.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.therapi</groupId>
- <artifactId>therapi-runtime-javadoc</artifactId>
- <version>${therapi-runtime-javadoc.version}</version>
- </dependency>
- <dependency>
- <groupId>io.github.linpeilie</groupId>
- <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
- <version>${mapstruct-plus.version}</version>
- </dependency>
- <!-- lombok-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </dependency>
- <!-- 临时修复 snakeyaml 漏洞 -->
- <dependency>
- <groupId>org.yaml</groupId>
- <artifactId>snakeyaml</artifactId>
- <version>${snakeyaml.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>
- <!-- 离线IP地址定位库 ip2region -->
- <dependency>
- <groupId>org.lionsoul</groupId>
- <artifactId>ip2region</artifactId>
- <version>${ip2region.version}</version>
- </dependency>
- <!-- OSS 配置 -->
- <dependency>
- <groupId>com.amazonaws</groupId>
- <artifactId>aws-java-sdk-s3</artifactId>
- <version>${aws-java-sdk-s3.version}</version>
- </dependency>
- <!-- 加解密依赖库 -->
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk18on</artifactId>
- <version>${bcprov-jdk.version}</version>
- </dependency>
- <!--Annotation Processor-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <version>${spring-boot.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>transmittable-thread-local</artifactId>
- <version>${alibaba-ttl.version}</version>
- </dependency>
- <!-- 解压-->
- <dependency>
- <groupId>com.github.junrar</groupId>
- <artifactId>junrar</artifactId>
- <version>7.4.1</version>
- </dependency>
- <dependency>
- <groupId>net.lingala</groupId>
- <artifactId>zip4j</artifactId>
- <version>1.3.3</version>
- </dependency>
- <!--短信sms4j-->
- <!-- <dependency>-->
- <!-- <groupId>org.dromara.sms4j</groupId>-->
- <!-- <artifactId>sms4j-spring-boot-starter</artifactId>-->
- <!-- <version>${sms4j.version}</version>-->
- <!-- </dependency>-->
- <!-- spring-boot-admin监控-->
- <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>
- <!-- 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>
- <!-- PowerJob定时任务处理器-->
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-job</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- 代码生成-->
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-generator</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- 系统模块-->
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-system</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- demo模块 -->
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-demo</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- biz模块 -->
- <dependency>
- <groupId>com.taais</groupId>
- <artifactId>taais-biz</artifactId>
- <version>${revision}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>taais-admin</module>
- <module>taais-common</module>
- <module>taais-extra</module>
- <module>taais-modules</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-runtime-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>
- <path>
- <groupId>com.mybatis-flex</groupId>
- <artifactId>mybatis-flex-processor</artifactId>
- <version>${mybatis-flex.version}</version>
- </path>
- </annotationProcessorPaths>
- <compilerArgs>
- <arg>-parameters</arg>
- </compilerArgs>
- </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>
- <!-- enable flattening -->
- <execution>
- <id>flatten</id>
- <phase>process-resources</phase>
- <goals>
- <goal>flatten</goal>
- </goals>
- </execution>
- <!-- ensure proper cleanup -->
- <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>
|