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

szetszwo pushed a commit to branch branch-3.1.1_review
in repository https://gitbox.apache.org/repos/asf/ratis.git

commit 54e6fee7c1de75edad9258f9bb40e33c3e2d8976
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Fri Jun 28 13:16:28 2024 +0200

    RATIS-2117. No need for manual assembly:single execution (#1115)
---
 .github/workflows/post-commit.yml | 2 +-
 dev-support/make_rc.sh            | 4 ++--
 ratis-assembly/pom.xml            | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/post-commit.yml 
b/.github/workflows/post-commit.yml
index 7c286b29b..2aafb9031 100644
--- a/.github/workflows/post-commit.yml
+++ b/.github/workflows/post-commit.yml
@@ -44,7 +44,7 @@ jobs:
           distribution: 'temurin'
           java-version: 8
       - name: Run a full build
-        run: ./dev-support/checks/build.sh -Prelease assembly:single
+        run: ./dev-support/checks/build.sh -Prelease
       - name: Store binaries for tests
         uses: actions/upload-artifact@v4
         with:
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index b5bec51dd..6394d1427 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -106,7 +106,7 @@ prepare-src() {
 
   #grep -r SNAPSHOT --include=pom.xml
 
-  mvnFun clean install assembly:single -DskipTests=true  -Prelease 
-Papache-release -Dgpg.keyname="${CODESIGNINGKEY}"
+  mvnFun clean install -DskipTests=true  -Prelease -Papache-release 
-Dgpg.keyname="${CODESIGNINGKEY}"
 }
 
 prepare-bin() {
@@ -118,7 +118,7 @@ prepare-bin() {
   mv "apache-ratis-${RATISVERSION}-src" "apache-ratis-${RATISVERSION}"
   cd "apache-ratis-${RATISVERSION}"
 
-  mvnFun clean install assembly:single -DskipTests=true  -Prelease 
-Papache-release -Dgpg.keyname="${CODESIGNINGKEY}"
+  mvnFun clean install -DskipTests=true  -Prelease -Papache-release 
-Dgpg.keyname="${CODESIGNINGKEY}"
 }
 
 assembly() {
diff --git a/ratis-assembly/pom.xml b/ratis-assembly/pom.xml
index 37fe56920..91a48c290 100644
--- a/ratis-assembly/pom.xml
+++ b/ratis-assembly/pom.xml
@@ -142,7 +142,7 @@
             </configuration>
           </execution>
           <execution>
-            <id>default-cli</id>
+            <id>bin</id>
             <phase>package</phase>
             <goals>
               <goal>single</goal>

Reply via email to