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:04:36 UTC

[logging-log4j-tools] branch master updated: Remove `installAtEnd` and `deployAtEnd` properties

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 c7dae2f  Remove `installAtEnd` and `deployAtEnd` properties
c7dae2f is described below

commit c7dae2f628d7e9b0942be68bba1f602f570f5a77
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Tue Jan 3 22:05:33 2023 +0100

    Remove `installAtEnd` and `deployAtEnd` properties
---
 .github/workflows/build.yml | 3 ---
 pom.xml                     | 5 ++++-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 032d843..5f0ac9e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -166,9 +166,6 @@ jobs:
           gpg --list-secret-keys
           ./mvnw \
             --show-version --batch-mode --errors --no-transfer-progress \
-            -DskipTests=true \
-            -DinstallAtEnd=true \
-            -DdeployAtEnd=true \
             -P release
         env:
           NEXUS_USERNAME: ${{ secrets.NEXUS_USER }}
diff --git a/pom.xml b/pom.xml
index 9128dc4..aa03d56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,8 +142,11 @@
   <profiles>
     <profile>
       <id>release</id>
+      <properties>
+        <skipTests>true</skipTests>
+      </properties>
       <build>
-        <defaultGoal>install deploy:deploy</defaultGoal>
+        <defaultGoal>deploy</defaultGoal>
         <plugins>
 
           <plugin>