0

是否有可能让裤子从您当地的 Maven 仓库中获取依赖项?

我已经搜索并查看了裤子构建系统(对我来说是新的),但没有人运气好?

4

1 回答 1

1

如果您使用 ivy,请根据ivysettings.xml 配置 ivy 设置:添加本地 maven 路径,然后让 Pants 选择 ivy 设置。

[resolve.ivy]
ivy_settings: /path/to/ivysettings.xml

如果你使用快递,

[coursier]
repos: [
    <other remote repos>,
    # local maven repo
    'file://%(homedir)s/.m2/repository',
  ]
于 2018-10-20T23:42:36.073 回答