Maven 2: Spring and JTA dependencies
Posted by Lucio Benfante Sat, 26 Nov 2005 08:06:00 GMT
Few weeks ago I started using Maven 2 for one of my development projects. The project is very simple, but it has dependencies with some external libraries, in particular with Spring:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>1.2.6</version>
<scope>runtime</scope>
</dependency>



