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.
据说:
Maven 2.0.9 引入了覆盖插件使用的依赖项的能力。当您想使用比插件默认包含的更新的 checkstyle、pmd 等 jar 时,这很方便。
我的问题是 - 我怎样才能获得某些特定插件的依赖项列表,就像获得项目的依赖项列表一样简单?
Executingmvn dependency:resolve-plugins将提供在你的 POM 中定义的所有插件的列表(以及从任何父 POM 继承的插件)以及每个插件的所有依赖项。
mvn dependency:resolve-plugins