I found one post here
http://www.nabble.com/forum/ViewPost.jtp?post=2165470&framed=y&skin=177
which discussed creating the buildcommand, projectnature and
additional .checkstyle file needed for configuring checkstyle in
eclipse but this has yet made it back to the community.

I can configure the checkstyle using the following:
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-eclipse-plugin</artifactId>
         <configuration>
           <downloadSources>true</downloadSources>
           <additionalBuildcommands>
             <buildcommand>
               com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder
             </buildcommand>
           </additionalBuildcommands>
           <additionalProjectnatures>
             <projectnature>
               com.atlassw.tools.eclipse.checkstyle.CheckstyleNature
             </projectnature>
           </additionalProjectnatures>
         </configuration>
       </plugin>

But I also need the ${project}/.checkstyle file.

Anyone have recommendations on how to do this?
Should eclipse:eclipse be extended to support this?
Should eclipse:checkstyle be created instead?

Cheers

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to