Skip to content

Commit c28f8c8

Browse files
committed
chore: add DISCLAIMER & NOTICE & LICENSE file to binary package
1 parent e339fed commit c28f8c8

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

DISCLAIMER

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Apache HugeGraph (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC.
2+
3+
Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications,
4+
and decision making process have stabilized in a manner consistent with other successful ASF projects.
5+
6+
While incubation status is not necessarily a reflection of the completeness or stability of the code,
7+
it does indicate that the project has yet to be fully endorsed by the ASF.

NOTICE

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Apache HugeGraph(incubating)
2+
Copyright 2022-2023 The Apache Software Foundation
3+
4+
This product includes software developed at
5+
The Apache Software Foundation (http://www.apache.org/).

hugegraph-dist/scripts/apache-release.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,11 @@ done
6262
##### 3.2 Generate SHA512 file
6363
shasum --version 1>/dev/null || exit
6464
for i in *.tar.gz; do
65-
echo "$i" && shasum -a 512 "$i" >"$i".sha512
65+
shasum -a 512 "$i" | tee "$i".sha512
6666
done
6767

6868
#### 3.3 check signature & sha512
69+
echo "#### start to check signature & hashcode ####"
6970
for i in *.tar.gz; do
7071
echo "$i"
7172
gpg --verify "$i".asc "$i" || exit

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@
232232
<exclude>CONFIG.ini</exclude>
233233
<exclude>GROUPS</exclude>
234234
<exclude>OWNERS</exclude>
235+
<exclude>DISCLAIMER</exclude>
235236
<!-- GitHub -->
236237
<exclude>.github/**/*</exclude>
237238
<!-- Intellij -->

0 commit comments

Comments
 (0)