Skip to content

Commit e565f43

Browse files
authored
Merge pull request #7 from codehaus-plexus/tools-components-utils
clarify Plexus Tools vs Components vs Utils vs (deprecated) IoC and c…
2 parents 6dbb734 + 2bec555 commit e565f43

File tree

3 files changed

+37
-24
lines changed

3 files changed

+37
-24
lines changed

src/site/apt/index.apt

+25-14
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@
88

99
Overview
1010

11-
Codehaus Plexus is a collection of components used by {{{http://maven.apache.org/} Apache Maven}}:
11+
Codehaus Plexus -- or more precisely <<Codehaus Plexus Tools and Components>> now -- is a collection of tools and components used by {{{http://maven.apache.org/} Apache Maven}}:
1212

13-
* {{{./modello/} Modello}},
13+
[[1]] <<tools>>:
1414

15-
* {{{./plexus-classworlds/}Plexus Classworlds}},
15+
* {{{./modello/} Modello}}: tool for code generation from a simple model,
1616

17-
* Plexus Components:
17+
* {{{./plexus-classworlds/}Plexus Classworlds}}: tool for advanced Java ClassLoader management.
18+
19+
[[2]] <<Plexus components>> (ie. implemented as {{{https://jcp.org/en/jsr/detail?id=330}JSR-330}} compliant components with <Plexus Container (deprecated)>/{{{https://www.eclipse.org/sisu/}Sisu}}):
1820

1921
* {{{./plexus-archiver/}plexus-archiver}}: components to manipulate archives,
2022

@@ -38,29 +40,38 @@ Overview
3840

3941
[]
4042

41-
* Plexus Parent POM: {{{./plexus-pom/}plexus}}
43+
[[3]] <<Parent POMs>>:
4244

43-
* {{{./plexus-utils/} Plexus Utils}},
45+
* Plexus Parent POM: {{{./plexus-pom/}plexus}},
4446

45-
* {{{./plexus-xml/} Plexus XML}}
47+
* Plexus Compponents Parent POM: {{{./plexus-components/}plexus-components}}.
4648

47-
[]
49+
[[4]] <<utilities>>:
4850

51+
* {{{./plexus-utils/} Plexus Utils}},
52+
53+
* {{{./plexus-xml/} Plexus XML}}.
54+
55+
[[5]] <(deprecated) {{{./plexus-containers/}Plexus Container}} (IoC container and companion tools)>, replaced by {{{https://www.eclipse.org/sisu/}Eclipse Sisu}} and {{{https://jcp.org/en/jsr/detail?id=330}JSR-330}}
56+
57+
[]
4958

50-
Plexus History
5159

5260
============================
5361

54-
* IMPORTANT NOTICE
62+
IMPORTANT NOTICE:
63+
Plexus Container and Companion Tools History
64+
65+
Plexus was initially composed of 2 parts: Plexus Container (IoC and companion tools) and Plexus Components (like Spring IoC and Spring Components).
5566

56-
The Plexus project was previously focused on {{{/plexus-containers/}IoC Plexus Container}}:
57-
it is now replaced with {{{https://www.eclipse.org/sisu/}Eclipse Sisu}}, rewritten as an extension on Google Guice.
58-
We kept whole content on IoC for reference, even if the IoC part is now obsolete.
67+
The project was previously focused on {{{./plexus-containers/}Plexus Container (IoC and companion tools)}}, not so much on Plexus Components:
68+
<<Plexus Container (IoC and companion tools)>> is now replaced with {{{https://www.eclipse.org/sisu/}Eclipse Sisu}}, written as a {{{https://jcp.org/en/jsr/detail?id=330}JSR-330}}-compliant extension on Google Guice.
69+
We kept the whole IoC + components content in this site for IoC historical reference, even if the <{{{./plexus-containers/}IoC and companion tools}}> part is now obsolete.
5970

6071
============================
6172

6273
See the {{{./ref/feature-comparison.html} Feature Comparison}} page for more information on
63-
the differences between Plexus and other products.
74+
the differences between Plexus and other IoC ecosystems.
6475

6576
The Plexus project provides a number of pre-built components for common tasks and toolkits
6677
such as Velocity, i18n, and {{{./ref/available-components.html} many more}}.

src/site/apt/ref/feature-comparison.apt

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99

1010
<<<The contents of this document are a work in progress>>>
1111

12-
How does Plexus compare with Spring?
12+
How does Plexus compare with Spring (1, early 2000)?
13+
14+
* <<Plexus is simpler and much much smaller than Spring.>>
1315

14-
* Plexus is simpler and much much smaller than Spring.
15-
1616
The simplest Spring Component which has configuration settings injected is
1717
more complex than in an equivalent case for Plexus as Plexus does not require
1818
setters.
1919

20-
* Spring attempts to be a Swiss Army knife.
20+
* <<Spring attempts to be a Swiss Army knife.>>
2121

2222
Spring tries to sell itself as a "j2ee framework" and as a Swiss Army knife -
2323
one framework for all possible problems.
@@ -32,35 +32,35 @@ How does Plexus compare with Spring?
3232
Army knife you can use better tools: hammer, screwdriver as you need to use
3333
them without having to include them all.
3434

35-
* Complex component life cycles are not supported in Spring.
35+
* <<Complex component life cycles are not supported in Spring.>>
3636

37-
* Spring configuration files are much longer than the one for Plexus.
37+
* <<Spring configuration files are much longer than the one for Plexus.>>
3838

3939
Specifically hierarchical configuration settings ala xstream are not
4040
supported by Spring.
4141

42-
* Spring is not using IoC for all dependecies of components.
42+
* <<Spring is not using IoC for all dependecies of components.>>
4343

4444
For example Spring is promoting terrible things like logging based on commons-logging,
4545
which makes most of the component dependent on an ugly singleton (IoC is
4646
against singletons!) and inevitably leads to incorrect class loader
4747
hierarchies (commons-logging must be in root classloader of the container).
4848

49-
* Missing notion of "Component identity"
49+
* <<Missing notion of "Component identity">>
5050

5151
Spring doesn't allow you to direct logging output from two deployed instances
5252
of the same component/bean to different files (unless you use AOP). This is
5353
due to the fact that "component identity" is not propagated or understood by
5454
the logging system. In Plexus such things are possible - but not yet
5555
implemented.
5656

57-
* Component class loader isolation.
57+
* <<Component class loader isolation.>>
5858

5959
Spring doesn't allow you to easly deploy two distinct components which are
6060
using conflicting version of "the same" jar (e.g. common-collections-2.x and
6161
commons-collection-3.x). for their internal stuff.
6262

63-
* In Plexus you don't have to repeat yourself.
63+
* <<In Plexus you don't have to repeat yourself.>>
6464

6565
Component descriptors which are in jars contain the facts which are needed
6666
by the container to manage components. Component personalities provide useful

src/site/site.xml

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ under the License.
3939

4040
<body>
4141
<links>
42+
<item name="JSR-330" href="https://jcp.org/en/jsr/detail?id=330"/>
43+
<item name="Eclipse Sisu" href="https://www.eclipse.org/sisu/"/>
4244
<item name="Plexus" href="http://codehaus-plexus.github.io/" />
4345
</links>
4446

0 commit comments

Comments
 (0)