Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get all apache commons at once?

Sorry for such question since it is more my duty to search for it, but I looked everywhere and didn't find answer for it.

Is it possible to get all apache commons components in one jar or there is no such archive?

like image 547
Eugene Avatar asked Sep 16 '11 20:09

Eugene


2 Answers

No, we don't have a "all-of-commons" jar (nor should we). It'd be large, and the functionality would be a pretty bizarre mix. You could always (attempt) to create one yourself, but you might need to do some shading if there's any version mis-matching.

like image 81
Dave Newton Avatar answered Sep 30 '22 10:09

Dave Newton


I highly doubt it. It makes no sense to combine such a broad array of functionality into a single jar. Most of the projects have nothing to do with one another and it is unlikely to require them all for a single application.

like image 32
Robin Avatar answered Sep 30 '22 10:09

Robin