12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.srm.bpm</groupId>
- <artifactId>bpm-pom</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <relativePath/>
- </parent>
- <artifactId>bpm-client</artifactId>
- <version>${parent.version}</version>
- <dependencies>
- <dependency>
- <groupId>com.srm.bpm</groupId>
- <artifactId>common-base</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
- <version>2.2.5.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- <version>2.2.5.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>io.github.openfeign</groupId>
- <artifactId>feign-httpclient</artifactId>
- <version>10.10.1</version>
- </dependency>
- <dependency>
- <groupId>com.srm.bpm</groupId>
- <artifactId>bpm-client-base</artifactId>
- <version>${parent.version}</version>
- </dependency>
- </dependencies>
- </project>
|