| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | <?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/maven-v4_0_0.xsd">    <modelVersion>4.0.0</modelVersion>    <parent>        <groupId>com.hfln.portal</groupId>        <artifactId>hfln-portal-service</artifactId>        <version>1.0.0-SNAPSHOT</version>        <relativePath>../pom.xml</relativePath>    </parent>    <artifactId>portal-service-client-starter</artifactId>    <packaging>jar</packaging>    <name>portal-service-client-starter</name>    <dependencies>        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>        </dependency>        <dependency>            <groupId>javax.validation</groupId>            <artifactId>validation-api</artifactId>        </dependency>        <dependency>            <groupId>cn.hfln.framework</groupId>            <artifactId>hfln-framework-common</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.cloud</groupId>            <artifactId>spring-cloud-openfeign-core</artifactId>        </dependency>        <dependency>            <groupId>com.hfln.portal</groupId>            <artifactId>portal-service-common</artifactId>        </dependency>        <dependency>            <groupId>io.github.openfeign</groupId>            <artifactId>feign-core</artifactId>        </dependency>        <dependency>            <groupId>io.github.openfeign</groupId>            <artifactId>feign-hystrix</artifactId>        </dependency>        <dependency>            <groupId>javax.servlet</groupId>            <artifactId>servlet-api</artifactId>            <version>2.4</version>            <scope>provided</scope>        </dependency>    </dependencies></project>
 |