You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Wim Deblauwe <wi...@gmail.com> on 2005/11/17 11:23:44 UTC

[m2] Idea plugin bug?

Hi,

There seems to be a bug in the maven-idea-plugin.

This is my structure (note that I use a master pom that defines my slightly
different structure):

+ modules
+ utils
+ utils-lang
+ pom.xml
+ src
+ main
+ test
+ utils-logging
+ pom.xml
+ src
+ main
+ test

The utils-lang module depends on the utils-logging module, so I've put in
the pom.xml of utils-lang:

<modules>
<module>../utils-logging</module>
 </modules>

When I run 'mvn idea:idea', the plugin generates iml and ipr files for both
modules. However, in the ipr file of utils-lang is only the
utils-logging.iml referred and not it's own utils-lang.iml. I suppose this
is a bug?

regards,

Wim