From 092f0c529dd00dd8504153999b89abe9092ea245 Mon Sep 17 00:00:00 2001 From: John Dennis Casey Date: Thu, 9 Sep 2004 00:54:55 +0000 Subject: [PATCH] o added handling of decorators. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163063 13f79535-47bb-0310-9956-ffa450edef68 --- maven-core/src/site/apt/lifecycle.apt | 66 ++++++++++++++++++--------- 1 file changed, 44 insertions(+), 22 deletions(-) diff --git a/maven-core/src/site/apt/lifecycle.apt b/maven-core/src/site/apt/lifecycle.apt index c96655c467..09ee455166 100644 --- a/maven-core/src/site/apt/lifecycle.apt +++ b/maven-core/src/site/apt/lifecycle.apt @@ -39,35 +39,57 @@ Maven Lifecycle | | v | | download the plugin which | | contains code for this goal - each prereq | | | - is a goal in | | | -another plugin | | v + | | | + | | | + | | v | | process the plugin descriptor | | and cache the results | | | | | | | |<---------+ | | + | | + | | | v - | do any prereqs need to be processed? - | | - | yes ---+------ no - | | | - | | | - | foreach(prereq) | - | | | - +----+ | - v - are there goal decorations? - | - | - yes ---+--- no - - - - - -+-----+ + | does goalX have any preGoals? + | | + | yes ---+----- no + | | | + | v | +/-------------/ | foreach(pregoal) | +each pregoal is | (1)| (2)| | +a goal which +----+ | | +may be in | +------->| +another plugin | | +/-------------/ | | + | v + | does goalX have any prereqs? + | | + | yes ---+----- no + | | | + | v | +/------------/ | foreach(prereq) | +each prereq is | (1) | (2)| | +a goal which | | | | +may be in | | |<-------+ +another plugin | | | +/------------/ | | | + +------------+ | + | | + | v + | does goalX have any postGoals? + | | + | yes ---+------ no + | | | + | v | +/------------/ | foreach(postgoal) | +each postgoal | (1)| (2)| | +is a goal which +-----------+ | | +may be in +-------->| +another plugin | +/------------/ | + v ++-----+ * Multiple goals