Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to download - all Spring jars in one bundle

I have question concerning to spring framework jars. Is it possible to download whole bundle in "one shoot" - e.g. relase - 4.0.0 - if yes how and where, or shall i download .jar after .jar from http://mvnrepository.com/ ?

Thank you indeed

like image 813
DRastislav Avatar asked Dec 24 '13 15:12

DRastislav


1 Answers

If you are not using Maven, you need to do download the JARs manually one by one, or you can opt to download a ZIP from here, as there is no official link.

If you are using Maven, you can opt to include whichever Spring dependencies you need - see this answer. This is also the way I prefer to do it.

On the Spring documentation page, they are suggesting doing it in the following way:

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>4.0.0.RELEASE</version>
    </dependency>
</dependencies>

It resolves spring-core, spring-aop, spring-context, spring-expression and spring-beans.

like image 139
Raul Rene Avatar answered Sep 30 '22 15:09

Raul Rene