This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new 703189ed6 RATIS-2206. Jars in Maven repo and binary tarball are not
the same (#1188)
703189ed6 is described below
commit 703189ed6c3c4671730367f92c062f8418de623f
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Sat Dec 14 13:16:24 2024 +0100
RATIS-2206. Jars in Maven repo and binary tarball are not the same (#1188)
---
dev-support/make_rc.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index dc56af595..0be04945e 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -118,7 +118,7 @@ prepare-bin() {
mv "apache-ratis-${RATISVERSION}-src" "apache-ratis-${RATISVERSION}"
cd "apache-ratis-${RATISVERSION}"
- mvnFun clean install -DskipTests=true -Prelease -Papache-release
-Dgpg.keyname="${CODESIGNINGKEY}"
+ mvnFun clean verify -DskipTests=true -Prelease -Papache-release
-Dgpg.keyname="${CODESIGNINGKEY}"
}
assembly() {
@@ -126,7 +126,7 @@ assembly() {
RCDIR="$SVNDISTDIR/${RATISVERSION}/${RC#-}"
mkdir -p "$RCDIR"
cd "$RCDIR"
- cp
"$WORKINGDIR/apache-ratis-${RATISVERSION}/ratis-assembly/target/ratis-assembly-${RATISVERSION}-bin.tar.gz"
"apache-ratis-${RATISVERSION}-bin.tar.gz"
+ cp
"$projectdir/ratis-assembly/target/ratis-assembly-${RATISVERSION}-bin.tar.gz"
"apache-ratis-${RATISVERSION}-bin.tar.gz"
cp
"$projectdir/ratis-assembly/target/ratis-assembly-${RATISVERSION}-src.tar.gz"
"apache-ratis-${RATISVERSION}-src.tar.gz"
for i in *.tar.gz; do gpg -u "${CODESIGNINGKEY}" --armor --output
"${i}.asc" --detach-sig "${i}"; done
for i in *.tar.gz; do gpg --print-md SHA512 "${i}" > "${i}.sha512"; done
@@ -147,7 +147,7 @@ publish-svn() {
publish-mvn(){
cd "$projectdir"
- mvnFun clean deploy -DskipTests=true -Prelease -Papache-release
-Dgpg.keyname="${CODESIGNINGKEY}"
+ mvnFun deploy:deploy
}
if [ "$#" -ne 1 ]; then