With the latest version of the plugin, my multi module projects get setup 
correctly. If you're having problems with the sources and javadoc, mvn 
idea:module does an update of your project instead of creating it again. 
Likewise idea:clean will remove any idea projects files.
You can even let mvn get all sources and javadoc (as far as they are available 
in the repository) by specifying the following in your pom:
<project>
   <build>
      <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-idea-plugin</artifactId>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <dependenciesAsLibraries>true</dependenciesAsLibraries>
                </configuration>
             </plugin>  
      </plugins>
   </build>
</project>

The latest snapshot can be found here:
http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-idea-plugin

Roald Bankras
Software Engineer
JTeam b.v.


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.405 / Virus Database: 268.10.8/415 - Release Date: 8/9/2006
 

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

Reply via email to