245 lines
9.1 KiB
XML
245 lines
9.1 KiB
XML
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>com.jinhaiqimeng</groupId>
|
||
|
<artifactId>sysManageMicroservice</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>war</packaging>
|
||
|
<name>sysManageMicroservice</name>
|
||
|
<description>系统管理中台</description>
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<spring-boot.version>2.6.13</spring-boot.version>
|
||
|
<spring-cloud.version>2021.0.5</spring-cloud.version>
|
||
|
<spring-cloud-alibaba.version>2021.0.5.0</spring-cloud-alibaba.version>
|
||
|
<!-- mybatis-puls -->
|
||
|
<mybatis-plus.version>3.3.1.tmp</mybatis-plus.version>
|
||
|
<mybatis-generator.version>3.3.1.tmp</mybatis-generator.version>
|
||
|
<!-- hutool -->
|
||
|
<hutool.version>5.3.9</hutool.version>
|
||
|
<!-- swagger -->
|
||
|
<swagger.version>3.0.0</swagger.version>
|
||
|
<!-- mybatis -->
|
||
|
<mybatis.version>2.2.2</mybatis.version>
|
||
|
<!-- okhttp-->
|
||
|
<okhttp.version>11.10</okhttp.version>
|
||
|
<!-- fastjson-->
|
||
|
<fastjson.version>1.2.83</fastjson.version>
|
||
|
<!-- openfeign-->
|
||
|
<openfeign.version>2.2.6.RELEASE</openfeign.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<!-- springcloud alibaba sentinel -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-validation</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
<version>${mybatis.version}</version>
|
||
|
</dependency>
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
||
|
<!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
|
<version>${openfeign.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.github.openfeign</groupId>
|
||
|
<artifactId>feign-okhttp</artifactId>
|
||
|
<version>${okhttp.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<!-- alibaba dataSource -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>druid-spring-boot-starter</artifactId>
|
||
|
<version>1.1.22</version>
|
||
|
</dependency>
|
||
|
<!-- MyBatis-Plus -->
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
|
<version>${mybatis-plus.version}</version>
|
||
|
</dependency>
|
||
|
<!-- freemarker 模板引擎 -->
|
||
|
<dependency>
|
||
|
<groupId>org.freemarker</groupId>
|
||
|
<artifactId>freemarker</artifactId>
|
||
|
</dependency>
|
||
|
<!-- MyBatis-Plus 自动代码生成器 -->
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>mybatis-plus-generator</artifactId>
|
||
|
<version>${mybatis-generator.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
<version>${hutool.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-boot-starter</artifactId>
|
||
|
<version>${swagger.version}</version>
|
||
|
</dependency>
|
||
|
<!-- knife4j 3.0.2 相关依赖 -->
|
||
|
<dependency>
|
||
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
||
|
<version>3.0.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-pool2</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>3.9</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- fastjson -->
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
<version>${fastjson.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>8.0.11</version>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||
|
<version>${spring-cloud.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
||
|
<version>${spring-cloud-alibaba.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-dependencies</artifactId>
|
||
|
<version>${spring-boot.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>nexus</id>
|
||
|
<name>Nexus Repository</name>
|
||
|
<url>http://nexus.derunht.cn/repository/maven-public/</url>
|
||
|
<releases>
|
||
|
<enabled>true</enabled>
|
||
|
</releases>
|
||
|
<snapshots>
|
||
|
<enabled>true</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
<!-- 私服仓库配置:从私服下载-->
|
||
|
<pluginRepositories>
|
||
|
<pluginRepository>
|
||
|
<id>nexus</id>
|
||
|
<name>Nexus Plugin Repository</name>
|
||
|
<url>http://nexus.derunht.cn/repository/maven-public/</url>
|
||
|
<releases>
|
||
|
<enabled>true</enabled>
|
||
|
</releases>
|
||
|
<snapshots>
|
||
|
<enabled>true</enabled>
|
||
|
</snapshots>
|
||
|
</pluginRepository>
|
||
|
</pluginRepositories>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<version>1.4.2.RELEASE</version>
|
||
|
<configuration>
|
||
|
<!-- ⭐️设定启动类 -->
|
||
|
<mainClass>com.jinhaiqimeng.sysManageMicroservice.SysManageMicroserviceApplication</mainClass>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
<version>3.2.3</version>
|
||
|
<configuration>
|
||
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>8</source>
|
||
|
<target>8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|