We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spring Cloud has a starter for eureka client with exclusions for various things:
<dependency> <groupId>com.netflix.eureka</groupId> <artifactId>eureka-core</artifactId> <version>1.10.10</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>archaius-core</artifactId> <groupId>com.netflix.archaius</groupId> </exclusion> <exclusion> <artifactId>servlet-api</artifactId> <groupId>javax.servlet</groupId> </exclusion> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>com.netflix.blitz4j</artifactId> <groupId>blitz4j</groupId> </exclusion> <exclusion> <artifactId>annotations</artifactId> <groupId>com.google.code.findbugs</groupId> </exclusion> <exclusion> <artifactId>jsr305</artifactId> <groupId>com.google.code.findbugs</groupId> </exclusion> <exclusion> <artifactId>jackson-dataformat-xml</artifactId> <groupId>com.fasterxml.jackson.dataformat</groupId> </exclusion> <exclusion> <artifactId>*</artifactId> <groupId>com.amazonaws</groupId> </exclusion> </exclusions> </dependency>
The servlet API one doesn't seem to be excluded properly from an app that depends on this starter.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Spring Cloud has a starter for eureka client with exclusions for various things:
The servlet API one doesn't seem to be excluded properly from an app that depends on this starter.
The text was updated successfully, but these errors were encountered: