This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c3a3c0b Fix anchors in guides/getting-started/index.htm (#408)
0c3a3c0b is described below

commit 0c3a3c0b2eaa566a77a2cbaac8cf9f3e6edfc62d
Author: Eric Vantillard <[email protected]>
AuthorDate: Wed Apr 19 12:58:24 2023 +0200

    Fix anchors in guides/getting-started/index.htm (#408)
---
 content/apt/guides/getting-started/index.apt | 80 ++++++++++++++--------------
 1 file changed, 40 insertions(+), 40 deletions(-)

diff --git a/content/apt/guides/getting-started/index.apt 
b/content/apt/guides/getting-started/index.apt
index ba3fb02c..7fab196e 100644
--- a/content/apt/guides/getting-started/index.apt
+++ b/content/apt/guides/getting-started/index.apt
@@ -23,37 +23,37 @@ Maven Getting Started Guide
 
 Sections
 
- * {{{./index.html#What_is_Maven}What is Maven?}}
+ * {{{./index.html#what-is-maven}What is Maven?}}
 
- * {{{./index.html#How_can_Maven_benefit_my_development_process}How can Maven 
benefit my development process?}}
+ * {{{./index.html#how-can-maven-benefit-my-development-process}How can Maven 
benefit my development process?}}
 
- * {{{./index.html#How_do_I_setup_Maven}How do I setup Maven?}}
+ * {{{./index.html#how-do-i-setup-maven}How do I setup Maven?}}
 
- * {{{./index.html#How_do_I_make_my_first_Maven_project}How do I make my first 
Maven project?}}
+ * {{{./index.html#how-do-i-make-my-first-maven-project}How do I make my first 
Maven project?}}
 
- * {{{./index.html#How_do_I_compile_my_application_sources}How do I compile my 
application sources?}}
+ * {{{./index.html#how-do-i-compile-my-application-sources}How do I compile my 
application sources?}}
 
- * {{{./index.html#How_do_I_compile_my_test_sources_and_run_my_unit_tests}How 
do I compile my test sources and run my unit tests?}}
+ * {{{./index.html#how-do-i-compile-my-test-sources-and-run-my-unit-tests}How 
do I compile my test sources and run my unit tests?}}
 
- * 
{{{./index.html#How_do_I_create_a_JAR_and_install_it_in_my_local_repository}How 
do I create a JAR and install it in my local repository?}}
+ * 
{{{./index.html#how-do-i-create-a-jar-and-install-it-in-my-local-repository}How 
do I create a JAR and install it in my local repository?}}
 
- * {{{./index.html#What_is_a_SNAPSHOT_version}What is a SNAPSHOT version?}}
+ * {{{./index.html#what-is-a-snapshot-version}What is a SNAPSHOT version?}}
 
- * {{{./index.html#How_do_I_use_plugins}How do I use plugins?}}
+ * {{{./index.html#how-do-i-use-plugins}How do I use plugins?}}
 
- * {{{./index.html#How_do_I_add_resources_to_my_JAR}How do I add resources to 
my JAR?}}
+ * {{{./index.html#how-do-i-add-resources-to-my-jar}How do I add resources to 
my JAR?}}
 
- * {{{./index.html#How_do_I_filter_resource_files}How do I filter resource 
files?}}
+ * {{{./index.html#how-do-i-filter-resource-files}How do I filter resource 
files?}}
 
- * {{{./index.html#How_do_I_use_external_dependencies}How do I use external 
dependencies?}}
+ * {{{./index.html#how-do-i-use-external-dependencies}How do I use external 
dependencies?}}
 
- * {{{./index.html#How_do_I_deploy_my_jar_in_my_remote_repository}How do I 
deploy my jar in my remote repository?}}
+ * {{{./index.html#how-do-i-deploy-my-jar-in-my-remote-repository}How do I 
deploy my jar in my remote repository?}}
 
- * {{{./index.html#How_do_I_create_documentation}How do I create 
documentation?}}
+ * {{{./index.html#how-do-i-create-documentation}How do I create 
documentation?}}
 
- * {{{./index.html#How_do_I_build_other_types_of_projects}How do I build other 
types of projects?}}
+ * {{{./index.html#how-do-i-build-other-types-of-projects}How do I build other 
types of projects?}}
 
- * {{{./index.html#How_do_I_build_more_than_one_project_at_once}How do I build 
more than one project at once?}}
+ * {{{./index.html#how-do-i-build-more-than-one-project-at-once}How do I build 
more than one project at once?}}
 
  []
 
@@ -183,7 +183,7 @@ mvn -B archetype:generate -DgroupId=com.mycompany.app 
-DartifactId=my-app -Darch
   * <<version>> This element indicates the version of the artifact generated 
by the project. Maven goes a long way
     to help you with version management and you will often see the 
<<<SNAPSHOT>>> designator in a version, which
     indicates that a project is in a state of development. We will discuss the 
use of
-    {{{./index.html#What_is_a_SNAPSHOT_version}snapshots}} and how they work 
further on in this guide.
+    {{{./index.html#what-is-a-snapshot-version}snapshots}} and how they work 
further on in this guide.
 
   * <<name>> This element indicates the display name used for the project. 
This is often used in Maven's
     generated documentation.
@@ -247,15 +247,15 @@ mvn compile
 
 -----
 [INFO] Scanning for projects...
-[INFO] 
+[INFO]
 [INFO] ----------------------< com.mycompany.app:my-app >----------------------
 [INFO] Building my-app 1.0-SNAPSHOT
 [INFO] --------------------------------[ jar ]---------------------------------
-[INFO] 
+[INFO]
 [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ my-app 
---
 [INFO] Using 'UTF-8' encoding to copy filtered resources.
 [INFO] skip non existing resourceDirectory <dir>/my-app/src/main/resources
-[INFO] 
+[INFO]
 [INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ my-app ---
 [INFO] Changes detected - recompiling the module!
 [INFO] Compiling 1 source file to <dir>/my-app/target/classes
@@ -297,38 +297,38 @@ mvn test
 
 ----
 [INFO] Scanning for projects...
-[INFO] 
+[INFO]
 [INFO] ----------------------< com.mycompany.app:my-app >----------------------
 [INFO] Building my-app 1.0-SNAPSHOT
 [INFO] --------------------------------[ jar ]---------------------------------
-[INFO] 
+[INFO]
 [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ my-app 
---
 [INFO] Using 'UTF-8' encoding to copy filtered resources.
 [INFO] skip non existing resourceDirectory <dir>/my-app/src/main/resources
-[INFO] 
+[INFO]
 [INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ my-app ---
 [INFO] Nothing to compile - all classes are up to date
-[INFO] 
+[INFO]
 [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) 
@ my-app ---
 [INFO] Using 'UTF-8' encoding to copy filtered resources.
 [INFO] skip non existing resourceDirectory <dir>/my-app/src/test/resources
-[INFO] 
+[INFO]
 [INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ 
my-app ---
 [INFO] Changes detected - recompiling the module!
 [INFO] Compiling 1 source file to <dir>/my-app/target/test-classes
-[INFO] 
+[INFO]
 [INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ my-app ---
-[INFO] 
+[INFO]
 [INFO] -------------------------------------------------------
 [INFO]  T E S T S
 [INFO] -------------------------------------------------------
 [INFO] Running com.mycompany.app.AppTest
 [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 s 
- in com.mycompany.app.AppTest
-[INFO] 
+[INFO]
 [INFO] Results:
-[INFO] 
+[INFO]
 [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
-[INFO] 
+[INFO]
 [INFO] ------------------------------------------------------------------------
 [INFO] BUILD SUCCESS
 [INFO] ------------------------------------------------------------------------
@@ -379,37 +379,37 @@ mvn install
 
 ----
 [INFO] Scanning for projects...
-[INFO] 
+[INFO]
 [INFO] ----------------------< com.mycompany.app:my-app >----------------------
 [INFO] Building my-app 1.0-SNAPSHOT
 [INFO] --------------------------------[ jar ]---------------------------------
-[INFO] 
+[INFO]
 [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ my-app 
---
 ...
 [INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ my-app ---
 [INFO] Nothing to compile - all classes are up to date
-[INFO] 
+[INFO]
 [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) 
@ my-app ---
 ...
 [INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ 
my-app ---
 [INFO] Nothing to compile - all classes are up to date
-[INFO] 
+[INFO]
 [INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ my-app ---
-[INFO] 
+[INFO]
 [INFO] -------------------------------------------------------
 [INFO]  T E S T S
 [INFO] -------------------------------------------------------
 [INFO] Running com.mycompany.app.AppTest
 [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 s 
- in com.mycompany.app.AppTest
-[INFO] 
+[INFO]
 [INFO] Results:
-[INFO] 
+[INFO]
 [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
-[INFO] 
-[INFO] 
+[INFO]
+[INFO]
 [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ my-app ---
 [INFO] Building jar: <dir>/my-app/target/my-app-1.0-SNAPSHOT.jar
-[INFO] 
+[INFO]
 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ my-app ---
 [INFO] Installing <dir>/my-app/target/my-app-1.0-SNAPSHOT.jar to 
<local-repository>/com/mycompany/app/my-app/1.0-SNAPSHOT/my-app-1.0-SNAPSHOT.jar
 [INFO] Installing <dir>/my-app/pom.xml to 
<local-repository>/com/mycompany/app/my-app/1.0-SNAPSHOT/my-app-1.0-SNAPSHOT.pom

Reply via email to