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 20:57:18 UTC

[logging-log4j-tools] branch master updated: Try enabling `maven-deploy-plugin` explicitly

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 3577186  Try enabling `maven-deploy-plugin` explicitly
3577186 is described below

commit 35771862fe5b919715a169975effc26bbed0dd02
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Tue Jan 3 21:58:12 2023 +0100

    Try enabling `maven-deploy-plugin` explicitly
---
 pom.xml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1469fd5..9128dc4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -152,7 +152,6 @@
             <version>${sign-maven-plugin.version}</version>
             <executions>
               <execution>
-                <phase>verify</phase>
                 <goals>
                   <goal>sign</goal>
                 </goals>
@@ -166,7 +165,6 @@
             <executions>
               <execution>
                 <id>attach-sources</id>
-                <phase>package</phase>
                 <goals>
                   <goal>jar-no-fork</goal>
                 </goals>
@@ -174,6 +172,14 @@
             </executions>
           </plugin>
 
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-deploy-plugin</artifactId>
+            <configuration>
+              <skip>false</skip>
+            </configuration>
+          </plugin>
+
         </plugins>
       </build>
     </profile>