123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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>
- <artifactId>demo</artifactId>
- <groupId>com.jiayue</groupId>
- <version>3.1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>demo-api</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencies>
- <!-- core 工具类 -->
- <dependency>
- <groupId>com.jiayue</groupId>
- <artifactId>csc-common-core</artifactId>
- </dependency>
- <!--feign 依赖-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <!-- feign 依赖 -->
- <dependency>
- <groupId>com.jiayue</groupId>
- <artifactId>csc-common-feign</artifactId>
- </dependency>
- <!--jpa 模块-->
- <dependency>
- <groupId>com.jiayue</groupId>
- <artifactId>csc-common-jpa</artifactId>
- </dependency>
- </dependencies>
- </project>
|