From 5e351cf2b19362297962b0ec04cc315fa5b1d04f Mon Sep 17 00:00:00 2001 From: contrueCT Date: Tue, 10 Mar 2026 18:52:40 +0800 Subject: [PATCH 1/2] fix(pom): update release-docs copy command without DISCLAIMER --- install-dist/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-dist/pom.xml b/install-dist/pom.xml index d30a3a2acb..45de069d07 100644 --- a/install-dist/pom.xml +++ b/install-dist/pom.xml @@ -53,7 +53,7 @@ cp -r -v $root_path/hugegraph-pd/apache-hugegraph-pd-${project.version} ${final.name}/ || exit cp -r -v $root_path/hugegraph-store/apache-hugegraph-store-${project.version} ${final.name}/ || exit cp -r -v $root_path/hugegraph-server/apache-hugegraph-server-${project.version} ${final.name}/ || exit - cp -r -v $root_path/install-dist/release-docs/* $root_path/DISCLAIMER ${final.name}/ || exit + cp -r -v $root_path/install-dist/release-docs/* ${final.name}/ || exit tar zcvf $root_path/target/${final.name}.tar.gz ./${final.name} || exit 1 From dd00376cadac270765ef09e07bb1bc9431c09466 Mon Sep 17 00:00:00 2001 From: contrueCT Date: Thu, 12 Mar 2026 20:22:14 +0800 Subject: [PATCH 2/2] docs: update output paths in AGENTS.md and development-guide.md --- hugegraph-pd/AGENTS.md | 2 +- .../hugegraph-dist/src/assembly/travis/run-api-test.sh | 2 +- hugegraph-store/docs/development-guide.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hugegraph-pd/AGENTS.md b/hugegraph-pd/AGENTS.md index edd9280a71..c9ba2bcfa0 100644 --- a/hugegraph-pd/AGENTS.md +++ b/hugegraph-pd/AGENTS.md @@ -110,7 +110,7 @@ mvn clean install # Build distribution package only mvn clean package -pl hg-pd-dist -am -DskipTests -# Output: hg-pd-dist/target/apache-hugegraph-pd-.tar.gz +# Output: hugegraph-pd/apache-hugegraph-pd-.tar.gz ``` ### Running Tests diff --git a/hugegraph-server/hugegraph-dist/src/assembly/travis/run-api-test.sh b/hugegraph-server/hugegraph-dist/src/assembly/travis/run-api-test.sh index 11875f88a0..14ea659527 100755 --- a/hugegraph-server/hugegraph-dist/src/assembly/travis/run-api-test.sh +++ b/hugegraph-server/hugegraph-dist/src/assembly/travis/run-api-test.sh @@ -34,7 +34,7 @@ mvn package -Dmaven.test.skip=true -ntp # add mysql dependency wget -P $SERVER_DIR/lib/ https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.28/mysql-connector-java-8.0.28.jar -if [[ ! -e "$SERVER_DIR/ikanalyzer-2012_u6.jar" ]]; then +if [[ ! -e "$SERVER_DIR/lib/ikanalyzer-2012_u6.jar" ]]; then wget -P $SERVER_DIR/lib/ https://raw.githubusercontent.com/apache/hugegraph-doc/ik_binary/dist/server/ikanalyzer-2012_u6.jar fi diff --git a/hugegraph-store/docs/development-guide.md b/hugegraph-store/docs/development-guide.md index b5839e8013..762cc13961 100644 --- a/hugegraph-store/docs/development-guide.md +++ b/hugegraph-store/docs/development-guide.md @@ -58,7 +58,7 @@ git checkout 1.7-rebase 2. Add new "Application" configuration: - Main class: `org.apache.hugegraph.store.node.StoreNodeApplication` - VM options: `-Xms4g -Xmx4g -Dconfig.file=conf/application.yml` - - Working directory: `hugegraph-store/hg-store-dist/target/apache-hugegraph-store-1.7.0` + - Working directory: `hugegraph-store/apache-hugegraph-store-1.7.0` - Use classpath of module: `hg-store-node` ### Build from Source @@ -216,7 +216,7 @@ hg-store-grpc/ **Start Server**: ```bash -cd hugegraph-store/hg-store-dist/target/apache-hugegraph-store-1.7.0 +cd hugegraph-store/apache-hugegraph-store-1.7.0 bin/start-hugegraph-store.sh ``` @@ -242,7 +242,7 @@ mvn compile ```bash mvn clean package -DskipTests -# Output: hg-store-dist/target/apache-hugegraph-store-.tar.gz +# Output: hugegraph-store/apache-hugegraph-store-.tar.gz ``` **Regenerate gRPC stubs** (after modifying `.proto` files):