從查看源代碼,它是這樣的:
<plugin>
<groupId>com.despegar.maven.plugin</groupId>
<artifactId>maven-m2e-codestyle</artifactId>
<version>1.0.3</version>
<executions>
<execution>
<goals>
<goal>configure</goal>
</goals>
<configuration>
<codeStyleBaseUrl>http://some/path/to/eclipse/files/</codeStyleBaseUrl>
<!-- Will not work. Scheme 'file' not registered. -->
<!-- <codeStyleBaseUrl>file://localhost/some/path/to/eclipse/files/</codeStyleBaseUrl> -->
<baseDir>${basedir}/</baseDir>
</configuration>
</execution>
</executions>
</plugin>
的2配置參數:
它複製這3個文件:
${codeStyleBaseUrl}/org.eclipse.core.resources.prefs
${codeStyleBaseUrl}/org.eclipse.jdt.core.prefs
${codeStyleBaseUrl}/org.eclipse.jdt.ui.prefs
到:
${baseDir}/.settings/
注意必須是HTTP/HTTPS,因爲它使用的HttpClient幕後。
你怎麼安裝插件?這不是在發現。 –
我實際上創建了這個插件的重寫https://github.com/trajano/m2e-codestyle-maven-plugin –