-
Remove unnecesary jars (3 messages)
- Posted by: Mat Bur
- Posted on: March 07 2007 10:00 EST
Hi, I have several apps which all contain a ridiculous ammount of libraries. I am convinced that most of them are unnecesary. Without taking into account the dependencies between libraries, is there any utility to determine which jars are unnecesary within a java project? considering i can resolve manually the dependencies between libraries. Thanx.Threaded Messages (3)
- Re: Remove unnecesary jars by Biswa Das on March 08 2007 10:51 EST
- Re: Remove unnecesary jars by John Smith on March 20 2007 05:26 EDT
- Re: Remove unnecesary jars by anil konduru on March 22 2007 02:38 EDT
-
Re: Remove unnecesary jars[ Go to top ]
- Posted by: Biswa Das
- Posted on: March 08 2007 10:51 EST
- in response to Mat Bur
Use Maven to build the application. If you are currently is ANT switch to Maven . Maven takes care of transitive dependencies and will automatically include the jars you need. -
Re: Remove unnecesary jars[ Go to top ]
- Posted by: John Smith
- Posted on: March 20 2007 05:26 EDT
- in response to Biswa Das
Really? does maven also resolve the dependencies when reflection is involved? I always thought that maven was a steaming pile of ... I might have to reconsider -
Re: Remove unnecesary jars[ Go to top ]
- Posted by: anil konduru
- Posted on: March 22 2007 02:38 EDT
- in response to Biswa Das
Use Maven to build the application. If you are currently is ANT switch to Maven . Maven takes care of transitive dependencies and will automatically include the jars you need.
Will it be able to decide jars which are required only at runtime.