netflix-eureka-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.basc.framework</groupId>
<artifactId>netflix-eureka-client</artifactId>
<version>1.8.3</version>
</dependency><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.basc.framework</groupId> <artifactId>framework</artifactId> <version>1.8.3</version> </parent> <artifactId>netflix-eureka-client</artifactId> <dependencies> <dependency> <groupId>io.basc.framework</groupId> <artifactId>cloud</artifactId> </dependency> <dependency> <groupId>io.basc.framework</groupId> <artifactId>web</artifactId> <exclusions> <exclusion> <groupId>javax.ws.rs</groupId> <artifactId>javax.ws.rs-api</artifactId> </exclusion> </exclusions> <!-- 注意这里使用compile的原因是为了覆盖其他引用,然后强制排除javax.ws.rs-api,这为这和jsr311存在冲突 --> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> </dependency> <dependency> <groupId>com.netflix.eureka</groupId> <artifactId>eureka-client</artifactId> <exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </exclusion> <exclusion> <groupId>com.sun.jersey</groupId> <artifactId>jersey-client</artifactId> </exclusion> <exclusion> <groupId>com.sun.jersey</groupId> <artifactId>jersey-core</artifactId> </exclusion> <exclusion> <groupId>com.sun.jersey.contribs</groupId> <artifactId>jersey-apache-client4</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sun.jersey.contribs</groupId> <artifactId>jersey-apache-client4</artifactId> </dependency> <dependency> <groupId>io.basc.framework</groupId> <artifactId>testing</artifactId> </dependency> <dependency> <groupId>io.basc.framework</groupId> <artifactId>tomcat</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.basc.framework</groupId> <artifactId>yaml</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.basc.framework</groupId> <artifactId>rpc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.basc.framework</groupId> <artifactId>log4j2</artifactId> <scope>test</scope> </dependency> </dependencies> </project>