java - Imported multi-module maven project children dont contain parent dependencies [Eclipse IDE] -
ok,
lets have big multi-moduled project. finished building maven, , decided import eclise.
parent project importent without issues. dependencies resolved. parent children imported workspace, children contain dependencies parent dependencies example:
parent contains <dependency> <groupid>com.github.kristofa</groupid> <artifactid>brave-interfaces</artifactid> <version>${brave.version}</version> </dependency>
and 100% working, fine. while children projects same dependency:
<dependency> <groupid>com.github.kristofa</groupid> <artifactid>brave-interfaces</artifactid> <version>${brave.version}</version> </dependency> is screaming errors it's missing. weird part projects building correctly, without errors maven side. (from maven point of view ok).
it's eclipse screams "omg errors"... 350 errors involving dependencies, ok , building.
tried, building projects/cleaning/mvn cleaning/updating dependency tree/closing/importing again.
anyone has ideas issue?
well. problem pretty trivial. maven installation didnt have or using wrong settings.xml file.
after setting global settings.xml file magically started work.
Comments
Post a Comment