Author: vsiveton
Date: Sat Jan 5 05:53:39 2008
New Revision: 609140
URL: http://svn.apache.org/viewvc?rev=609140&view=rev
Log:
MNG-3257: Intro to the POM Example 3 - nonsense explanation
Submitted by: Gary Morgan
Reviewed by: Vincent Siveton
o applied
Modified:
maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt
Modified:
maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt
URL:
http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt?rev=609140&r1=609139&r2=609140&view=diff
==============================================================================
---
maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt
(original)
+++
maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt
Sat Jan 5 05:53:39 2008
@@ -312,10 +312,10 @@
In the revised com.mycompany.app:my-app:1, the packaging section and the
modules sections were added. For
the packaging, it's value was set to "pom", and for the modules section, we
have the element
- /<module/>my-module/<//module/>. The value of /<module///> is the relative
path from the com.mycompany.app:my-module:1
+ \<module\>my-module\</module\>. The value of \<module/\> is the relative path
from the com.mycompany.app:my-app:1
to com.mycompany.app:my-module:1's POM (<by practice, we use the module's
artifactId as the module directory's name>).
- Now, whenever a maven command processes com.mycompany.app:my-module:1, that
same maven command would be ran against
+ Now, whenever a maven command processes com.mycompany.app:my-app:1, that same
maven command would be ran against
com.mycompany.app:my-module:1 as well. Furthermore, some commands (goals
specifically) handles project aggregation
differently.