1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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>
- <parent>
- <groupId>com.jiayue.ipfcst.external</groupId>
- <artifactId>ipfcst-external-parent</artifactId>
- <version>1.0.0.RELEASE</version>
- </parent>
- <artifactId>ipfcst-external</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <!--日志处理-->
- <!--<dependency>-->
- <!--<groupId>com.jiayue</groupId>-->
- <!--<artifactId>ipfcst-common-log</artifactId>-->
- <!--<version>1.0.0 RELEASE</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>com.jiayue.ipfcst.external</groupId>
- <artifactId>ipfcst-external-common-core</artifactId>
- <version>1.0.0.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.jiayue.ipfcst.external</groupId>
- <artifactId>ipfcst-external-api</artifactId>
- <version>1.0.0.RELEASE</version>
- </dependency>
- <!--mybatis 模块-->
- <dependency>
- <groupId>com.jiayue.ipfcst.external</groupId>
- <artifactId>ipfcst-external-common-mybatis</artifactId>
- <version>1.0.0.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.jiayue.ipfcst.external</groupId>
- <artifactId>ipfcst-external-common-swagger</artifactId>
- <version>1.0.0.RELEASE</version>
- </dependency>
- <!--注册中心客户端-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- </dependency>
- <!--配置中心客户端-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- </dependency>
- <!--undertow容器-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-undertow</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|