This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
The following commit(s) were added to refs/heads/master by this push:
new 10e5a980e [MNG-8234] Fix IT (#361)
10e5a980e is described below
commit 10e5a980e24088dff96d7a103c133dfc8bca3c21
Author: Guillaume Nodet <[email protected]>
AuthorDate: Thu Sep 12 08:17:33 2024 +0200
[MNG-8234] Fix IT (#361)
---
.../test/resources/mng-7804-plugin-execution-order/pom.xml | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git
a/core-it-suite/src/test/resources/mng-7804-plugin-execution-order/pom.xml
b/core-it-suite/src/test/resources/mng-7804-plugin-execution-order/pom.xml
index e14caa454..c94a8dfdd 100644
--- a/core-it-suite/src/test/resources/mng-7804-plugin-execution-order/pom.xml
+++ b/core-it-suite/src/test/resources/mng-7804-plugin-execution-order/pom.xml
@@ -16,16 +16,14 @@
<goals>
<goal>clean</goal>
</goals>
- <phase>clean</phase>
- <priority>100</priority>
+ <phase>clean[100]</phase>
</execution>
<execution>
<id>300. This should be third</id>
<goals>
<goal>clean</goal>
</goals>
- <phase>clean</phase>
- <priority>300</priority>
+ <phase>clean[300]</phase>
</execution>
</executions>
</plugin>
@@ -38,16 +36,14 @@
<goals>
<goal>run</goal>
</goals>
- <phase>clean</phase>
- <priority>200</priority>
+ <phase>clean[200]</phase>
</execution>
<execution>
<id>400. This should be fourth</id>
<goals>
<goal>run</goal>
</goals>
- <phase>clean</phase>
- <priority>400</priority>
+ <phase>clean[400]</phase>
</execution>
</executions>
</plugin>