------ Loading Code Styles File ------ Dan T. Tran ------ 13 June 2007 ------ Load Coding Styles into Workspace External coding style file can be loaded into your Eclipse workspace via a URL. The following example shows how set Maven code style format to a workspace under your current directory. +----- mvn eclipse:eclipse -Declipse.projectDir=. -Declipse.workspaceCodeStyleURL=http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-eclipse-plugin/src/optional/eclipse-config/maven-styles.xml +----- or in your pom.xml: +----- [...] [...] [...] org.apache.maven.plugins maven-eclipse-plugin ${basedir} http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-eclipse-plugin/src/optional/eclipse-config/maven-styles.xml [...] [...] [...] +-----