123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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>quality-service</artifactId>
- <groupId>com.unis.quality</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>quality-client</artifactId>
- <dependencies>
- <dependency>
- <groupId>io.github.openfeign.form</groupId>
- <artifactId>feign-form-spring</artifactId>
- </dependency>
- <dependency>
- <groupId>io.github.openfeign.form</groupId>
- <artifactId>feign-form</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <dependency>
- <artifactId>quality-common</artifactId>
- <groupId>com.unis.quality</groupId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.unis.base</groupId>
- <artifactId>base-common</artifactId>
- <version>0.0.2</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>quality-client</finalName>
- </build>
- </project>
|