Priority
Normal
Type
Bug 
State
Fixed 
Assignee
Anton Makeev 
Subsystem
Maven Integration 
Affected versions
Fixed in
Fixed in build
Next build 
Build
8113
Fixed in build
7686
  • Submitted by   Irina Petrovskaya
    2 years ago (21 Jan 2008 16:25)
  • Updated by   root
    3 weeks ago (17 Jan 2010 19:57)
  • Jira: IDEA-42592
    (history, comments)

IDEA-42592

Maven: extra src/target pathss specified via build-helper plugin should be added as paths relative to $MODULE_DIR$

0

if the extra source/test paths added via build-helper plugin are specified as paths under the module dir (i.e. no ".." are used in path), then the project can be opened by IDEA, but the path is not resolved anyway.
For example see the following snippet:
<configuration> <sources> <source>sources_to_add/src</source> <!--source>../../sources_to_add/src</source--> <!--cannot be opened - see 24337--> </sources> </configuration>
for the commented out path - IDEA-42506;
for the not commented one the project is normally created, but the extra path is added to module incorrectly:
in iml file:
<content url="file://sources_to_add/src">
<sourceFolder url="file://sources_to_add/src" isTestSource="false" />
</content>



Issue was resolved
Comments (1)
 
History (1)
 
Links
 
Anton Makeev
  Anton Makeev
06 Feb 2008 12:28
(2 years ago)
#permalink
all the paths are now stored as relative (the corresponding option is set on the module settings dialog).