diff --git a/api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java b/api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java index 229232582e52..64c6ab2e9dad 100644 --- a/api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java +++ b/api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java @@ -76,8 +76,8 @@ boolean projectRequired() default true; /** - * if the Mojo uses the Maven project and its child modules. - * @return uses the Maven project and its child modules + * if the Mojo uses the Maven project and its subprojects. + * @return uses the Maven project and its subprojectss */ boolean aggregator() default false; diff --git a/api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java b/api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java index 2082cf2db851..e41e7867700c 100644 --- a/api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java +++ b/api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java @@ -27,7 +27,7 @@ /** * A Source specific to load POMs. The {@link #resolve(ModelLocator, String)} method - * will be used to find POMs for children modules. + * will be used to find POMs for subprojects. * * @since 4.0.0 */ diff --git a/api/maven-api-model/src/main/mdo/maven.mdo b/api/maven-api-model/src/main/mdo/maven.mdo index da8353c58a6f..5b22bc91947b 100644 --- a/api/maven-api-model/src/main/mdo/maven.mdo +++ b/api/maven-api-model/src/main/mdo/maven.mdo @@ -528,10 +528,10 @@ modules 4.0.0+ - The modules (sometimes called subprojects) to build as a part of this - project. Each module listed is a relative path to the directory containing the module. - To be consistent with the way default urls are calculated from parent, it is recommended - to have module names match artifact ids. + The subprojects (formerly called modules) to build as a part of this + project. Each subproject listed is a relative path to the directory containing the subproject. + To be consistent with the way default URLs are calculated from parent, it is recommended + to have subproject names match artifact ids. String * @@ -755,8 +755,8 @@ defaultGoal 3.0.0+ The default goal (or phase in Maven 2) to execute when none is specified for - the project. Note that in case of a multi-module build, only the default goal of the top-level - project is relevant, i.e. the default goals of child modules are ignored. Since Maven 3, + the project. Note that in case of a build with subprojects, only the default goal of the top-level + project is relevant, i.e. the default goals of subprojects are ignored. Since Maven 3, multiple goals/phases can be separated by whitespace. String