Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is 'plexus' and how is it related to maven? [closed]

Can someone explain to me what Plexus is http://plexus.codehaus.org/ ?

How is it related to Maven?

like image 751
jcm Avatar asked Jan 15 '14 04:01

jcm


1 Answers

Plexus is a platform consisting of an Inversion-of-Control container along with a number of utility libraries, including the Classworlds class loader framework. Maven was built on it but, as khmarbaise points out, a large amount of work has gone into replacing it with Guice.

Plexus also provides a number of utility libraries which are heavily used by the core Maven plugins -- plexus-utils, plexus-archiver and more. ~/.m2/repository/org/codehaus/plexus/ will be fairly busy on any machine that's run Maven.

like image 75
Joe Avatar answered Oct 13 '22 03:10

Joe