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.
我正在构建我的应用程序,我可以看到下载同一个 jar 的不同版本,并且我的耳朵变得非常大。您能否让我知道是否有任何简单的快捷方式可以删除旧版本并仅保留最新版本的 jar?
我已经使用 mvn:dependencytree 进行了分析。
首先,如果多个版本是依赖项,maven 最终只会使用一个版本的 jar,所以你不应该在你的耳朵里得到同一个 jar 的多个版本。
其次,您可以使用<exclusions>您的依赖项来避免您不想要的依赖项。
<exclusions>