如何配置maven使用系统上存在的jar文件来满足依赖关系?
我需要在 Web 应用程序的 pom.xml 文件中配置 jar,这样我就不需要使用 lib 文件夹来存储所有 jar 文件。 请帮忙。
I need to configure the jars in my pom.xml file in my web application in such a way that I need not use the lib folder to store all the jar files.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你确实有存储在 lib 文件夹中的依赖项(我假设这些 jar 不存在于 Central 中),你可以使用系统依赖项,
但我假设你的意思有所不同,因为上面的内容会在 Maven 3 上产生警告。您有容器提供的依赖项(例如 Tocmat),您可以按提供的方式定义依赖项。
但最好的方法是将此类依赖项放入我希望您正在使用的本地存储库管理器中(Artifactory 、Nexus、档案)。
If you really have dependencies which are stored in a lib folder (I assume those jar's don't exist in Central) you can use the system dependency
But i assume you mean something different, cause the above will procuce a warning on Maven 3. If you have a dependency which is provided by the Container (for example Tocmat) you can define a dependency as provided.
But the best is to put such dependencies into a local repository manager which i hope you are using (Artifactory, Nexus, Archiva).
您可以手动将它们添加到本地存储库(因为它们似乎不在中央)。
但最好的办法是建立您自己(或公司)的存储库来为您保存它们。
You can mannually add them to your local repository (since it seems that they are not at central).
But the best would be to set up your own (or company) repository to hold them for you.