Skip to content

Commit

Permalink
Adding missing dependencies
Browse files Browse the repository at this point in the history
In a clean environment spring-beans and spring-core appear to be
required and are not picked up by transitive dependencies.
  • Loading branch information
hoserdude committed Aug 10, 2013
1 parent 6902cb8 commit c5bbd91
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pom.xml
Expand Up @@ -109,7 +109,16 @@
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring-framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring-framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
Expand Down

0 comments on commit c5bbd91

Please sign in to comment.