Maven:包括来自远程存储库的jar

时间:2017-03-07 11:18:03

标签: maven pom.xml

我希望通过使用远程存储库概念,在我的pom.xml中包含位于\ 10.171.98.23系统[ex:\ 10.171.98.23 \ workspace \ Project \ lib]下的jar。 如何在Maven中实现?任何建议对于继续进行更有用

1 个答案:

答案 0 :(得分:0)

最简单的例子是:

  <repositories>
    <repository>
      <id>my-internal-site</id>
      <url>http://myserver/repo</url>
    </repository>
  </repositories>

查看documentation以了解更多信息。您还可以查看Maven the reference guide