1

使用 maven eclipse 插件,我可以通过向 pom.xml 添加必要的调用并调用“mvn eclipse:eclipse”来创建项目配置来配置checkstyle或 sonar 配置。

我的团队中的一些成员只想使用“导入 Maven 项目”,因此无法获得项目预配置的好处。有没有办法为 m2eclipse 提供相同(或类似)的提示?

我想要完成的是人们只需“导入 Maven 项目”,他们就会自动获得一个预先配置了正确 checkstyle 配置的项目(可能从 POM 中定义的某个地方下载),而无需手动进入项目首选项和点击周围很多。这以某种方式违背了自动项目生成的目的:-)

4

2 回答 2

1

There are more detailed answers to this topic in Can I Configure m2eclipse through pom.xml?: Completely automatic configuration can only be achieved with a ProjectConfigurator. But there is a solution based on AntRun and XMLTask even for FindBugs and Sonar. It needs manual triggering only once after checkout.

于 2011-03-06T18:35:58.123 回答
0

这可以通过编写自定义ProjectConfigurator来实现(如该线程中所述)。看起来有人在 m2e -extensions项目中发布了其中的一些(用于 Checkstyle、PMD、FindBugs)。

于 2010-10-07T18:05:43.180 回答