| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- <?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>
- <groupId>com.sckw</groupId>
- <artifactId>slope-manage-service</artifactId>
- <version>1.0.0</version>
- <name>slope-manage-service</name>
- <url>http://git.sckaiwu.cn/17358629955/sckw-service-platform.git</url>
- <description>slope-manage-service微服务系统</description>
- <modules>
- <module>slope-common</module>
- <module>slope-modules</module>
- <module>slope-modules-api</module>
- </modules>
- <packaging>pom</packaging>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <spring-version>6.0.7</spring-version>
- <spring-boot.version>3.0.5</spring-boot.version>
- <spring-cloud.version>2022.0.0</spring-cloud.version>
- <spring-cloud-alibaba.version>2022.0.0.0-RC1</spring-cloud-alibaba.version>
- <!--不能使用3.2.0版本,会导致redisson里面的kryo版本降低值4.2.0-->
- <dubbo.version>3.2.2</dubbo.version>
- <snakeyaml.version>2.0</snakeyaml.version>
- <springdoc.version>2.1.0</springdoc.version>
- <redisson.version>3.21.3</redisson.version>
- <fastjson.version>2.0.38</fastjson.version>
- <easyexcel.version>3.3.2</easyexcel.version>
- <cglib.version>3.3.0</cglib.version>
- <commons-io.version>2.11.0</commons-io.version>
- <alicloud-sms.version>2.2.0.RELEASE</alicloud-sms.version>
- <oss.version>2.2.0.RELEASE</oss.version>
- <sentinel-csp.version>1.8.6</sentinel-csp.version>
- <nacos-client.version>2.2.1</nacos-client.version>
- <hutool.version>5.8.18</hutool.version>
- <mybatis-plus.version>3.5.3.1</mybatis-plus.version>
- <dynamic-datasource.version>3.6.1</dynamic-datasource.version>
- <latest.release.version>5.2.0</latest.release.version>
- <pagehelper.version>5.3.2</pagehelper.version>
- <pagehelper-spring-boot-starter.version>1.4.7</pagehelper-spring-boot-starter.version>
- <junit.version>4.13.2</junit.version>
- <xxljob.version>2.4.0</xxljob.version>
- <project.version>1.0.0</project.version>
- <!--maven插件版本声明-->
- <maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
- <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
- <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
- <maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
- <maven-install-plugin.version>3.0.1</maven-install-plugin.version>
- <maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring-boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- spring-cloud -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-dependencies</artifactId>
- <version>${spring-cloud.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- spring-cloud-alibaba -->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-alibaba-dependencies</artifactId>
- <version>${spring-cloud-alibaba.version}</version>
- <type>pom</type>
- <scope>import</scope>
- <exclusions>
- <exclusion>
- <groupId>com.alibaba.nacos</groupId>
- <artifactId>nacos-client</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- common 的依赖配置-->
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-bom</artifactId>
- <version>${project.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- modules 的依赖配置-->
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-modules-bom</artifactId>
- <version>${project.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- apache dubbo -->
- <dependency>
- <groupId>org.apache.dubbo</groupId>
- <artifactId>dubbo-bom</artifactId>
- <version>${dubbo.version}</version>
- <type>pom</type>
- <scope>import</scope>
- <exclusions>
- <exclusion>
- <groupId>com.alibaba</groupId>
- <artifactId>hessian-lite</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- yaml/yml配置文件 -->
- <dependency>
- <groupId>org.yaml</groupId>
- <artifactId>snakeyaml</artifactId>
- <version>${snakeyaml.version}</version>
- <!--<scope>compile</scope>-->
- </dependency>
- <!--处理序列化问题-->
- <dependency>
- <groupId>com.caucho</groupId>
- <artifactId>hessian</artifactId>
- </dependency>
- <!--reids操作-->
- <dependency>
- <groupId>org.redisson</groupId>
- <artifactId>redisson-spring-boot-starter</artifactId>
- <version>${redisson.version}</version>
- </dependency>
- <!--alibaba fastjson-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <!--alibaba EasyExcel导入导出-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>${easyexcel.version}</version>
- </dependency>
- <!--cglib-->
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- </exclusion>
- </exclusions>
- <version>${cglib.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons-io.version}</version>
- </dependency>
- <!--alibaba 短信-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-alicloud-sms</artifactId>
- <version>${alicloud-sms.version}</version>
- </dependency>
- <!--alibaba oss-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alicloud-oss</artifactId>
- <version>${oss.version}</version>
- </dependency>
- <!-- Sentinel Datasource Nacos 持久化存储-->
- <dependency>
- <groupId>com.alibaba.csp</groupId>
- <artifactId>sentinel-datasource-nacos</artifactId>
- <version>${sentinel-csp.version}</version>
- </dependency>
- <!--nacos-->
- <dependency>
- <groupId>com.alibaba.nacos</groupId>
- <artifactId>nacos-client</artifactId>
- <version>${nacos-client.version}</version>
- </dependency>
- <!-- 上面排除掉了springcloud默认seata版本,此处引入和seata-server版本对应的seata包-->
- <dependency>
- <groupId>io.seata</groupId>
- <artifactId>seata-spring-boot-starter</artifactId>
- <version>1.6.1</version>
- </dependency>
- <!--jdk9+ 以上需要手动添加 JAXB能够使用Jackson对JAXB注解-->
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>2.3.1</version>
- </dependency>
- <!--hutool-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-http</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-extra</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <!--mybatis-plus 依赖-->
- <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>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-extension</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <!--多数据源-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- <version>${dynamic-datasource.version}</version>
- </dependency>
- <!--ShardingSphere-JDBC-->
- <dependency>
- <groupId>org.apache.shardingsphere</groupId>
- <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>
- <version>${latest.release.version}</version>
- </dependency>
- <!--分页-->
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper</artifactId>
- <version>${pagehelper.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
- <version>${pagehelper-spring-boot-starter.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>${pagehelper-spring-boot-starter.version}</version>
- </dependency>
- <!--junit-->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- <scope>test</scope>
- </dependency>
- <!--Lombok-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.26</version>
- <!--<scope>provided</scope>-->
- </dependency>
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-core</artifactId>
- <version>10.1.7</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- <version>${spring-version}</version>
- </dependency>
- <!--xxx-job-->
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-job-core</artifactId>
- <version>${xxljob.version}</version>
- </dependency>
- <!--<dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjweaver</artifactId>
- <version>1.9.19</version>
- </dependency>-->
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk18on</artifactId>
- <version>1.74</version>
- </dependency>
- <!--日志链路-->
- <dependency>
- <groupId>com.yomahub</groupId>
- <artifactId>tlog-all-spring-boot-starter</artifactId>
- <version>1.5.1</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <profiles.active>dev</profiles.active>
- <nacos.server>10.10.10.230:8848</nacos.server>
- <nacos.namespace>sckw-service-platform-dev</nacos.namespace>
- </properties>
- </profile>
- <!--测试环境-->
- <profile>
- <id>test</id>
- <properties>
- <profiles.active>test</profiles.active>
- <nacos.server>10.10.10.224:8848</nacos.server>
- <nacos.namespace>sckw-service-platform</nacos.namespace>
- </properties>
- </profile>
- <!--生产环境-->
- <profile>
- <id>prod</id>
- <properties>
- <profiles.active>prod</profiles.active>
- <nacos.server>172.16.156.151:8848</nacos.server>
- <nacos.namespace>sckw-service-platform</nacos.namespace>
- </properties>
- </profile>
- </profiles>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-clean-plugin</artifactId>
- <version>${maven-clean-plugin.version}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven-compiler-plugin.version}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>${maven-deploy-plugin.version}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <version>${maven-install-plugin.version}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>${maven-jar-plugin.version}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <version>${maven-resources-plugin.version}</version>
- <configuration>
- <propertiesEncoding>${project.build.sourceEncoding}</propertiesEncoding>
- <delimiters>
- <delimiter>@</delimiter>
- </delimiters>
- <useDefaultDelimiters>false</useDefaultDelimiters>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- </plugin>
- </plugins>
- </pluginManagement>
- <!-- <plugins>-->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-clean-plugin</artifactId>-->
- <!-- </plugin>-->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-deploy-plugin</artifactId>-->
- <!-- </plugin>-->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-install-plugin</artifactId>-->
- <!-- </plugin>-->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-compiler-plugin</artifactId>-->
- <!-- <configuration>-->
- <!-- <source>17</source>-->
- <!-- <target>17</target>-->
- <!-- <encoding>UTF-8</encoding>-->
- <!-- </configuration>-->
- <!-- </plugin>-->
- <!-- </plugins>-->
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <!-- 关闭过滤 -->
- <filtering>false</filtering>
- <includes>
- <include>**/*</include>
- </includes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <!-- 启用过滤 即该资源中的变量将会被过滤器中的值替换 -->
- <filtering>true</filtering>
- <!--资源-->
- <includes>
- <include>**/*.properties</include>
- <include>**/*.yml</include>
- </includes>
- </resource>
- </resources>
- </build>
- </project>
|