You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2020/06/19 18:50:13 UTC

[maven-integration-testing] branch stabilize created (now 41a4935)

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

rfscholte pushed a change to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git.


      at 41a4935  Lock plugin versions in extension lifecycle to prevent it'll pick up the LATEST, which might behave differently

This branch includes the following new commits:

     new 41a4935  Lock plugin versions in extension lifecycle to prevent it'll pick up the LATEST, which might behave differently

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-integration-testing] 01/01: Lock plugin versions in extension lifecycle to prevent it'll pick up the LATEST, which might behave differently

Posted by rf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git

commit 41a49351a1e95945d6541fb68329eddc66c5005a
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Jun 19 20:50:02 2020 +0200

    Lock plugin versions in extension lifecycle to prevent it'll pick up the LATEST, which might behave differently
---
 .../main/resources/META-INF/plexus/components.xml   | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/core-it-support/core-it-extension/src/main/resources/META-INF/plexus/components.xml b/core-it-support/core-it-extension/src/main/resources/META-INF/plexus/components.xml
index 56d23ca..0146cdd 100644
--- a/core-it-support/core-it-extension/src/main/resources/META-INF/plexus/components.xml
+++ b/core-it-support/core-it-extension/src/main/resources/META-INF/plexus/components.xml
@@ -41,18 +41,15 @@ under the License.
           <lifecycle>
             <id>default</id>
             <phases>
-              <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
-              <compile>org.apache.maven.plugins:maven-compiler-plugin:compile</compile>
-              <process-test-resources>
-                org.apache.maven.plugins:maven-resources-plugin:testResources
-              </process-test-resources>
-              <test-compile>org.apache.maven.plugins:maven-compiler-plugin:testCompile</test-compile>
-              <test>org.apache.maven.plugins:maven-surefire-plugin:test</test>
-              <package>
-                org.apache.maven.plugins:maven-jar-plugin:jar
-              </package>
-              <install>org.apache.maven.plugins:maven-install-plugin:install</install>
-              <deploy>org.apache.maven.plugins:maven-deploy-plugin:deploy</deploy>
+              <process-resources>org.apache.maven.plugins:maven-resources-plugin:0.1-stub-SNAPSHOT:resources</process-resources>
+              <compile>org.apache.maven.plugins:maven-compiler-plugin:0.1-stub-SNAPSHOT:compile</compile>
+              <process-test-resources>org.apache.maven.plugins:maven-resources-plugin:0.1-stub-SNAPSHOT:testResources</process-test-resources>
+              <test-compile>org.apache.maven.plugins:maven-compiler-plugin:0.1-stub-SNAPSHOT:testCompile</test-compile>
+              <test>org.apache.maven.plugins:maven-surefire-plugin:0.1-stub-SNAPSHOT:test</test>
+              <!-- Results of these plugins are used for verification -->
+              <package>org.apache.maven.plugins:maven-jar-plugin:2.2:jar</package>
+              <install>org.apache.maven.plugins:maven-install-plugin:2.5.2:install</install>
+              <deploy>org.apache.maven.plugins:maven-deploy-plugin:0.1-stub-SNAPSHOT:deploy</deploy>
             </phases>
           </lifecycle>
         </lifecycles>