subhrajyotim / rocksteady

Automatically exported from code.google.com/p/rocksteady
GNU General Public License v2.0
0 stars 0 forks source link

Spring dependencies are not correctly configure in pom #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Spring dependencies are not correctly configured in pom

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>org.springframework.core</artifactId>
    <version>${spring.version}</version>
</dependency>

Shoud be (notice: artifactId)

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>${spring.version}</version>
</dependency>

Original issue reported on code.google.com by alexrov...@gmail.com on 29 Apr 2011 at 8:24

GoogleCodeExporter commented 8 years ago
Thanks.  I am guessing the name has changed.  I'll have a look at it.

Original comment by ma...@google.com on 4 May 2011 at 7:50