Skip to content

Instantly share code, notes, and snippets.

@behrangsa
Created September 26, 2011 10:14
Show Gist options
  • Save behrangsa/1241974 to your computer and use it in GitHub Desktop.
Save behrangsa/1241974 to your computer and use it in GitHub Desktop.
Dependency management problem
<!-- Parent POM -->
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<scope>compile</scope>
</dependency>
<!-- child POM -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<!-- ERROR:
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-context:jar is missing. @ line 38, column 21
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment