This error simply says that it cannot be found in the java.net repository, it must continue and check the rest until it is found by the one who has it. You should be able to safely ignore this.
Also, the URL you provided for spring seems to be dead, it gives me a 500 error when I try to get there directly. In any case, its useless ones, like spring artifacts, can be found in the central center of maven (at least through 3.0.6, which you specify as your dependency).
After a little research, I found that spring did not publish the spring artifact since 2.5.6 . You will need to specify each artifact individually. For example:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>3.0.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>3.0.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>3.0.6.RELEASE</version> </dependency> ...
Lucas
source share