Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 Netbeans 中清理和构建基于 maven 的项目时,依赖项不会复制到目标文件夹。
因此,当我尝试在另一台机器上运行该应用程序时,它将无法正常工作。
如何将所有依赖项包含到 /target 文件夹中并将它们链接起来,以便在应用程序在另一台机器上运行时可以找到它们?
您必须使用像org.codehaus.mojo:appassembler-maven-plugin创建可分发程序这样的插件。此插件复制所需的所有依赖项。
org.codehaus.mojo:appassembler-maven-plugin
请阅读文档以获取更多信息。