Skip to content

Commit 50bbd63

Browse files
authored
RATIS-1318. Remove incubating from make_rc.sh and ratis-assembly. (#426)
1 parent a6913a5 commit 50bbd63

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.asf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515
github:
1616
description: "Open source Java implementation for Raft consensus protocol."
17-
homepage: http://ratis.incubator.apache.org/
17+
homepage: http://ratis.apache.org/
1818
labels:
1919
- raft
2020
- consensus-protocol

dev-support/make_rc.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ echo "Repo dir: ${repodir}"
7979

8080
SVNDISTDIR=${SVNDISTDIR:-$projectdir/../svndistratis}
8181
if [ ! -d "$SVNDISTDIR" ]; then
82-
svn co https://dist.apache.org/repos/dist/dev/incubator/ratis "$SVNDISTDIR"
82+
svn co https://dist.apache.org/repos/dist/dev/ratis "$SVNDISTDIR"
8383
fi
8484

8585

@@ -116,8 +116,8 @@ prepare-bin() {
116116
rm -rf "$WORKINGDIR"
117117
mkdir -p "$WORKINGDIR"
118118
cd "$WORKINGDIR"
119-
tar zvxf "$projectdir/ratis-assembly/target/apache-ratis-incubating-${RATISVERSION}-src.tar.gz"
120-
cd "apache-ratis-incubating-${RATISVERSION}"
119+
tar zvxf "$projectdir/ratis-assembly/target/apache-ratis-${RATISVERSION}-src.tar.gz"
120+
cd "apache-ratis-${RATISVERSION}"
121121

122122
mvnFun clean install assembly:single -DskipTests=true -Prelease -Papache-release -Dgpg.keyname="${CODESIGNINGKEY}"
123123
}
@@ -127,8 +127,8 @@ assembly() {
127127
RCDIR="$SVNDISTDIR/${RATISVERSION}/${RC#-}"
128128
mkdir -p "$RCDIR"
129129
cd "$RCDIR"
130-
cp "$WORKINGDIR/apache-ratis-incubating-${RATISVERSION}/ratis-assembly/target/apache-ratis-incubating-${RATISVERSION}-bin.tar.gz" "apache-ratis-incubating-${RATISVERSION}-bin.tar.gz"
131-
cp "$projectdir/ratis-assembly/target/apache-ratis-incubating-${RATISVERSION}-src.tar.gz" "apache-ratis-incubating-${RATISVERSION}-src.tar.gz"
130+
cp "$WORKINGDIR/apache-ratis-${RATISVERSION}/ratis-assembly/target/apache-ratis-${RATISVERSION}-bin.tar.gz" "apache-ratis-${RATISVERSION}-bin.tar.gz"
131+
cp "$projectdir/ratis-assembly/target/apache-ratis-${RATISVERSION}-src.tar.gz" "apache-ratis-${RATISVERSION}-src.tar.gz"
132132
for i in *.tar.gz; do gpg -u "${CODESIGNINGKEY}" --armor --output "${i}.asc" --detach-sig "${i}"; done
133133
for i in *.tar.gz; do gpg --print-md SHA512 "${i}" > "${i}.sha512"; done
134134
for i in *.tar.gz; do gpg --print-mds "${i}" > "${i}.mds"; done

ratis-assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
<artifactId>maven-assembly-plugin</artifactId>
129129
<configuration>
130130
<!--Else will use ratis-assembly as final name.-->
131-
<finalName>apache-ratis-incubating-${project.version}</finalName>
131+
<finalName>apache-ratis-${project.version}</finalName>
132132
<skipAssembly>false</skipAssembly>
133133
<appendAssemblyId>true</appendAssemblyId>
134134
<tarLongFileMode>gnu</tarLongFileMode>

ratis-assembly/src/main/resources/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ implementation of the key raft elements: raftlog and state machine. The are for
2727

2828
For more deails see:
2929

30-
https://ratis.incubator.apache.org
30+
https://ratis.apache.org

0 commit comments

Comments
 (0)