Browse Source

Exclude aws jars from eureka client by default

Saves about 5MB in the final executable jar, and it should be
optional for Spring Cloud users.
pull/6/head
Dave Syer 8 years ago
parent
commit
e94c35d331
  1. 4
      spring-cloud-netflix-dependencies/pom.xml

4
spring-cloud-netflix-dependencies/pom.xml

@ -270,6 +270,10 @@ @@ -270,6 +270,10 @@
<artifactId>jackson-dataformat-xml</artifactId>
<groupId>com.fasterxml.jackson.dataformat</groupId>
</exclusion>
<exclusion>
<artifactId>*</artifactId>
<groupId>com.amazonaws</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- Eureka core dep that is now optional -->

Loading…
Cancel
Save