You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by vo...@apache.org on 2022/12/20 02:42:15 UTC

[myfaces] branch main updated: Skip integration-tests deployment

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

volosied pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/main by this push:
     new b95e7fefa Skip integration-tests deployment
     new 3fcf9c98a Merge pull request #444 from volosied/main
b95e7fefa is described below

commit b95e7fefaf74e8868bcedca55873e2e7d7d44e4d
Author: Volodymyr Siedlecki <vo...@gmail.com>
AuthorDate: Mon Dec 19 21:34:30 2022 -0500

    Skip integration-tests deployment
---
 integration-tests/pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index 742764bbc..e2281ef0d 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -91,6 +91,15 @@
                     <target>${java.version}</target>
                 </configuration>
             </plugin>
+            <!-- Skip deployment for this module as it's testing -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <version>3.0.0</version>
+                <configuration>
+                  <skip>true</skip>
+                </configuration>
+              </plugin>
         </plugins>
     </build>