John
John

Reputation:

Is it possible to find all java jars from one place

where to find jar files required for all Java EE level websites like

All jars for spring , hibernate , logging , maven etc.

could not find it

EDIT:

I want something like library.zip file where all the required jars may be hibernate , spring , mysql , oracle , velocity are in one file so that i can use same every where so that i don't need to repeat that step again again. Maven is option but i want other option as well

Upvotes: 1

Views: 511

Answers (3)

Aaron Gage
Aaron Gage

Reputation: 2403

Google is your friend:

I found this list for spring on a page found using search string "all jars files required for spring"

* spring-aop.jar
* spring-beans.jar
* spring-context.jar
* spring-context-support.jar
* spring-core.jar
* spring-jdbc.jar
* spring-jms.jar
* spring-orm.jar
* spring-test.jar
* spring-tx.jar
* spring-web.jar
* spring-webmvc.jar
* spring-webmvc-portlet.jar
* spring-webmvc-struts.jar

rinse and repeat....

Upvotes: 0

AlexR
AlexR

Reputation: 115328

Use maven to build your application and you do not have to ask such questions. Maven does the work for you: it downloads all required dependencies.

Upvotes: 1

Navi
Navi

Reputation: 8736

The spring jars

The hibernate jars can be found here. Search for hibernate if necessary

Upvotes: 1

Related Questions