You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2023/03/08 14:33:49 UTC

[skywalking] 01/01: chore: skip tests when releasing

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

kezhenxu94 pushed a commit to branch kezhenxu94-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking.git

commit 502824327f3a77d10bf75ee37825a5973d766b81
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Wed Mar 8 22:33:40 2023 +0800

    chore: skip tests when releasing
    
    Because we have tested for every commit, we don't want / need to test when releasing.
    
    This doesn't have to be included in 9.4.0
---
 pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index 020e218613..cfde23c2fa 100755
--- a/pom.xml
+++ b/pom.xml
@@ -370,6 +370,14 @@
                     <artifactId>antlr4-maven-plugin</artifactId>
                     <version>${antlr.version}</version>
                 </plugin>
+                
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-release-plugin</artifactId>
+                    <configuration>
+                        <arguments>-DskipTests</arguments>
+                    </configuration>
+                </plugin>
             </plugins>
         </pluginManagement>
         <plugins>