extension-loadbalancer-spring-cloud-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.easyretrofit</groupId> <artifactId>extension-loadbalancer-spring-cloud-starter</artifactId> <version>1.0.0</version> </dependency>
<?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>io.github.easyretrofit</groupId> <artifactId>parent</artifactId> <version>1.1.0</version> </parent> <packaging>jar</packaging> <description>easy-retrofit extension loadbalancer for spring cloud</description> <artifactId>extension-loadbalancer-spring-cloud-starter</artifactId> <version>1.0.0</version> <url>https://github.com/easyretrofit/${project.artifactId}</url> <scm> <url>https://github.com/easyretrofit/${project.artifactId}</url> <connection>scm:git:git://github.com/easyretrofit/${project.artifactId}.git</connection> <developerConnection>scm:git:ssh://github.com/easyretrofit/${project.artifactId}.git</developerConnection> </scm> <properties> <java.version>8</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <java.source.version>${java.version}</java.source.version> <java.target.version>${java.version}</java.target.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>4.13.2</junit.version> <spring.boot.version>2.0.0.RELEASE</spring.boot.version> <retrofit.version>2.11.0</retrofit.version> <easy-retrofit.version>1.1.3</easy-retrofit.version> <loadbalancer.version>3.1.7</loadbalancer.version> <commons.lang3.version>3.14.0</commons.lang3.version> <junit.version>4.13.2</junit.version> </properties> <dependencies> <dependency> <groupId>io.github.easyretrofit</groupId> <artifactId>core</artifactId> <version>${easy-retrofit.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-commons</artifactId> <version>${loadbalancer.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>${spring.boot.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${spring.boot.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring.boot.version}</version> <scope>test</scope> </dependency> </dependencies> </project>