Skip to content

Commit 6b8407c

Browse files
authored
[MNGSITE-393] Remove Maven 2.0 content (#565)
* [MNGSITE-393] Remove Maven 2.0 content and some other minor copy edits * Update introduction-to-the-lifecycle.apt
1 parent 416f0d6 commit 6b8407c

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

content/apt/guides/introduction/introduction-to-the-lifecycle.apt

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ mvn verify
100100

101101
This command executes each default lifecycle phase in order (<<<validate>>>, <<<compile>>>, <<<package>>>, etc.),
102102
before executing <<<verify>>>. You only need to call the last build phase to be executed, in this case, <<<verify>>>.
103-
In most cases the effect is the same as <<<package>>>. However, in case there are integration-tests, these will be
104-
executed as well. And during the <<<verify>>> phase some additional checks can be done, e.g. if your code written
105-
according to the predefined checkstyle rules.
103+
In most cases the effect is the same as <<<package>>>. However, in case there are integration tests, these will be
104+
executed as well. And during the <<<verify>>> phase additional checks can be done, e.g. if your code is written
105+
according to predefined checkstyle rules.
106106

107107
In a build environment, use the following call to cleanly build and deploy artifacts into the shared repository.
108108

@@ -140,10 +140,8 @@ mvn clean dependency:copy-dependencies package
140140
Furthermore, a build phase can also have zero or more goals bound to it. If a build phase has no goals bound to it,
141141
that build phase will not execute. But if it has one or more goals bound to it, it will execute all those goals.
142142
~~~
143-
~~~ Check if the following is true for Maven 3...
144-
(<Note: In Maven 2.0.5 and above, multiple goals bound to a phase are executed in the same order as they are declared in the
145-
POM, however multiple instances of the same plugin are not supported. Multiple instances of the same plugin are grouped to execute together and ordered in
146-
Maven 2.0.11 and above>).
143+
Multiple goals bound to a phase are executed in the same order as they are declared in the
144+
POM. Multiple instances of the same plugin are grouped to execute together.
147145
~~~
148146

149147
<{{{./introduction-to-the-lifecycle.html}[top]}}.>

0 commit comments

Comments
 (0)