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.
This commit is contained in:
Dave Syer
2016-10-13 10:02:15 +01:00
parent a685a72660
commit e94c35d331

View File

@@ -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 -->