| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 | 
							- <?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">
 
-     <parent>
 
-         <groupId>com.storlead.boot</groupId>
 
-         <artifactId>storlead-framework</artifactId>
 
-         <version>${revision}</version>
 
-     </parent>
 
-     <modelVersion>4.0.0</modelVersion>
 
-     <artifactId>storlead-web</artifactId>
 
-     <packaging>jar</packaging>
 
-     <name>${project.artifactId}</name>
 
-     <dependencies>
 
-         <dependency>
 
-             <groupId>com.storlead.boot</groupId>
 
-             <artifactId>storlead-common</artifactId>
 
-             <version>${revision}</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.storlead.boot</groupId>
 
-             <artifactId>storlead-core</artifactId>
 
-             <version>${revision}</version>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>javax.servlet</groupId>
 
-             <artifactId>javax.servlet-api</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-dependencies</artifactId>
 
-             <version>${spring.boot.version}</version>
 
-             <type>pom</type>
 
-             <scope>import</scope>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework</groupId>
 
-             <artifactId>spring-web</artifactId>
 
-         </dependency>
 
-         <!-- Web 相关 -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-web</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter</artifactId>
 
-         </dependency>
 
-         <!-- spring boot 配置所需依赖 -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-configuration-processor</artifactId>
 
-             <optional>true</optional>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-actuator</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.aspectj</groupId>
 
-             <artifactId>aspectjweaver</artifactId>
 
-             <scope>provided</scope> <!-- 解决工具类 SpringExpressionUtils 加载的时候访问不到 org.aspectj.lang.JoinPoint 问题 -->
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.github.xiaoymin</groupId>
 
-             <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.projectlombok</groupId>
 
-             <artifactId>lombok</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>io.springfox</groupId>
 
-             <artifactId>springfox-swagger2</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>io.springfox</groupId>
 
-             <artifactId>springfox-swagger-ui</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>io.swagger</groupId>
 
-             <artifactId>swagger-annotations</artifactId>
 
-         </dependency>
 
- <!--        <dependency>-->
 
- <!--            <groupId>org.springdoc</groupId>-->
 
- <!--            <artifactId>springdoc-openapi-ui</artifactId>-->
 
- <!--        </dependency>-->
 
-         <dependency>
 
-             <groupId>org.springframework.security</groupId>
 
-             <artifactId>spring-security-core</artifactId>
 
-             <scope>provided</scope> <!-- 设置为 provided,主要是 GlobalExceptionHandler 使用 -->
 
-         </dependency>
 
-     </dependencies>
 
- </project>
 
 
  |