This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push:
new 2da6d8a06 Document the default Maven goal
2da6d8a06 is described below
commit 2da6d8a060e469b6d40e40f7269296eda6b4559c
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jan 23 10:18:47 2025 -0500
Document the default Maven goal
Normalize descriptions
---
src/site/xdoc/building.xml | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/site/xdoc/building.xml b/src/site/xdoc/building.xml
index 69db4be47..ba250c868 100644
--- a/src/site/xdoc/building.xml
+++ b/src/site/xdoc/building.xml
@@ -48,10 +48,11 @@ limitations under the License.
The following <a href="http://maven.apache.org">Maven</a> commands can be
used to build io:
</p>
<ul>
- <li><code>mvn clean</code> - clean up</li>
- <li><code>mvn test</code> - compile and run the unit tests</li>
- <li><code>mvn site</code> - create io documentation</li>
- <li><code>mvn package</code> - build the jar</li>
+ <li><code>mvn</code> - runs the default Maven goal which performs all
build checks</li>
+ <li><code>mvn clean</code> - cleans up</li>
+ <li><code>mvn test</code> - compiles and runs the unit tests</li>
+ <li><code>mvn site</code> - creates the site and documentation</li>
+ <li><code>mvn package</code> - creates the jar</li>
</ul>
</section>
</body>