播放排除依赖关系

时间:2012-01-03 08:28:00

标签: playframework

尝试使用以下

排除某些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

1 个答案:

答案 0 :(得分:3)

您可以尝试以下方法:

 require:
    - play
    - com.openadex.jupiter -> jupiter.protocol 0.1.0-SNAPSHOT:
          exclude:
              - org.springframework -> spring-core 3.1.0.RELEASE

在最后一行前面注意' - '。