Reputation: 403
trying to exclude some spring dependencies, using the following
require:
- play
- com.openadex.jupiter -> jupiter.protocol 0.1.0-SNAPSHOT:
exclude:
org.springframework -> spring-core 3.1.0.RELEASE
But this stills downloads spring-core when running play deps --sync
Upvotes: 0
Views: 716
Reputation: 485
You may try the following:
require:
- play
- com.openadex.jupiter -> jupiter.protocol 0.1.0-SNAPSHOT:
exclude:
- org.springframework -> spring-core 3.1.0.RELEASE
Mind the '-' in front of the last line.
Upvotes: 3