Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While using IDEA community edition, local maven custom properties are shown as errors in my pom.xml...

e.g.

<!-- bar/pom.xml -->

<properties>
    <foo.version>1.0.0</foo.version>
    ...
</properties>
...
...
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>blah.bar</groupId>
            <artifactId>foo-core</artifactId>
            <version>${foo.version}</version>
        </dependency>
    </dependencies>
</dependencyManagement>

${foo.version} is show in red as an error "Dependency... ${foo.version} not found..."

it appears that IDEA is not resolving the property...

nb: foo-core-1.0.0 (pom/jar) is available in my local repo

any ideas?

share|improve this question
Is it compiled ok? Does cursor jump to <foo.version>1.0.0</foo.version>, when ctrl+click on ${foo.version} ? – Timofei Davydik Apr 8 '11 at 9:16
It seems like it works in a single project but if you depend on a submodule of another project it doesn't work. – spullara Apr 11 '11 at 0:57
@Timofei no, ctrl+click on ${foo.version} doesn't jump to property definition at <foo.version>1.0.0</foo.version> – mlo55 Apr 11 '11 at 1:07

1 Answer

up vote 2 down vote accepted

This seems to be a commonly reported issue: http://youtrack.jetbrains.net/issues/IDEA?q=maven+properties+red

I also have the same issue with RC 2

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.