我有一個maven-multi項目,當我從它創建一個新的eclipse項目時(通過M2E 1.0的「Checkout Maven Project from SCM)我希望eclipse checkstyle插件是配置該項目自動。如何在Eclipse中自動爲Maven項目配置Checkstyle
所以我添加在父POM的<pluginManagement>
部分maven-eclipse-plugin
並將其配置爲生成.checkstyle
文件以及附加的項目性質CheckstyleNature
。在MODUL勁歌我在構建添加的maven-eclipse-plugin
的名字但是當我簽出項目時什麼也沒有發生,文件沒有生成,並且沒有添加文件。
所以我認爲我在做一些完全錯誤的事情,但是它是如何做的正確的?
父POM - 插件管理部分:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>false</downloadJavadocs>
<wtpversion>2.0</wtpversion>
<additionalBuildcommands>
<buildCommand>
<name>org.eclipse.ajdt.core.ajbuilder</name>
<arguments>
<aspectPath>org.springframework.aspects</aspectPath>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
</buildCommand>
</additionalBuildcommands>
<additionalProjectnatures>
<projectnature>org.eclipse.ajdt.ui.ajnature</projectnature>
<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
<projectnature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</projectnature>
</additionalProjectnatures>
<additionalConfig>
<file>
<name>.checkstyle</name>
<content>
<![CDATA[
<?xml version="1.0" encoding="UTF-8"?>
<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
<fileset name="all" enabled="true" check-config-name="My Checkstyle rules" local="false">
<file-match-pattern match-pattern="." include-pattern="true"/>
</fileset>
<filter name="FilesFromPackage" enabled="true">
<filter-data value="target" />
<filter-data value="src/main/resources"/>
<filter-data value="src/test/java"/>
<filter-data value="src/test/resources"/>
<filter-data value="src/main/webapp" />
</filter>
</fileset-config>
]]>
</content>
</file>
</additionalConfig>
</configuration>
</plugin>
模塊POM - 插件部分:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
</plugin>
聽起來很不錯,我沒有測試過,但弗朗的PROJEKT描述這正是我需要的 – Ralph
不幸的是,[M2E碼品質連接器不M2E 1.4(開普勒)的目錄(https://開頭github.com/m2e-code-quality/m2e-code-quality/issues/25)。 – oberlies
的M2E-代碼質量主頁(http://m2e-code-quality.github.io/m2e-code-quality/)接縫是很老,但它的市場網頁HTTPS://marketplace.eclipse。 org/content/m2e-code-quality表明該項目還活着 – Ralph