尝试使用以下
排除某些spring依赖项 require:
- play
- com.openadex.jupiter -> jupiter.protocol 0.1.0-SNAPSHOT:
exclude:
org.springframework -> spring-core 3.1.0.RELEASE
但是当运行play deps --sync
时,这仍然会下载spring-core答案 0 :(得分:3)
您可以尝试以下方法:
require:
- play
- com.openadex.jupiter -> jupiter.protocol 0.1.0-SNAPSHOT:
exclude:
- org.springframework -> spring-core 3.1.0.RELEASE
在最后一行前面注意' - '。