You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2023/01/03 21:43:40 UTC

[logging-log4j-tools] branch master updated: Disable unnecessary plugins during release

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

vy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new b0293a4  Disable unnecessary plugins during release
b0293a4 is described below

commit b0293a4d2e32b7f90be84520d1f90c49d9536fce
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Tue Jan 3 22:44:31 2023 +0100

    Disable unnecessary plugins during release
---
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index 19819dd..a36a69f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -141,12 +141,19 @@
 
   <profiles>
     <profile>
+
       <id>release</id>
+
       <properties>
         <skipTests>true</skipTests>
+        <spotbugs.skip>true</spotbugs.skip>
+        <spotless.check.skip>true</spotless.check.skip>
       </properties>
+
       <build>
+
         <defaultGoal>deploy</defaultGoal>
+
         <plugins>
 
           <plugin>
@@ -176,7 +183,9 @@
           </plugin>
 
         </plugins>
+
       </build>
+
     </profile>
   </profiles>