You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2023/01/10 07:56:18 UTC

[maven-site] branch master updated: highlight XML

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

hboutemy 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 ac2fd841 highlight XML
ac2fd841 is described below

commit ac2fd84124583ab4bda4bc5de3ff534f155505db
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Tue Jan 10 08:56:08 2023 +0100

    highlight XML
---
 .../guides/introduction/introduction-to-the-lifecycle.apt    | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/content/apt/guides/introduction/introduction-to-the-lifecycle.apt b/content/apt/guides/introduction/introduction-to-the-lifecycle.apt
index 2406bba3..f643d2c5 100644
--- a/content/apt/guides/introduction/introduction-to-the-lifecycle.apt
+++ b/content/apt/guides/introduction/introduction-to-the-lifecycle.apt
@@ -233,8 +233,7 @@ mvn clean dependency:copy-dependencies package
   a model and incorporate that into the build, you would add the following to your POM in the <<<\<plugins\>>>> section of
   <<<\<build\>>>>:
 
-----
-...
++----+
  <plugin>
    <groupId>org.codehaus.modello</groupId>
    <artifactId>modello-maven-plugin</artifactId>
@@ -253,8 +252,7 @@ mvn clean dependency:copy-dependencies package
      </execution>
    </executions>
  </plugin>
-...
-----
++----+
 
   You might be wondering why that <<<\<executions\>>>> element is there. That is so that you can run the same goal multiple times
   with different configuration if needed. Separate executions can also be given an ID so that during inheritance or the
@@ -269,8 +267,7 @@ mvn clean dependency:copy-dependencies package
   it to run in the <<<process-test-resources>>> phase to indicate when the tests were started. This would be configured
   like so:
 
-----
-...
++----+
  <plugin>
    <groupId>com.mycompany.example</groupId>
    <artifactId>display-maven-plugin</artifactId>
@@ -284,8 +281,7 @@ mvn clean dependency:copy-dependencies package
      </execution>
    </executions>
  </plugin>
-...
-----
++----+
 
   <{{{./introduction-to-the-lifecycle.html}[top]}}.>