This is an automated email from the ASF dual-hosted git repository.
jin pushed a commit to branch readme
in repository https://gitbox.apache.org/repos/asf/hugegraph.git
The following commit(s) were added to refs/heads/readme by this push:
new cfa47896b docs: update output paths in AGENTS.md and
development-guide.md for copliot's comment (#2968)
cfa47896b is described below
commit cfa47896befe506364a878bd634babc8671f59c0
Author: contrueCT <[email protected]>
AuthorDate: Fri Mar 13 17:25:29 2026 +0800
docs: update output paths in AGENTS.md and development-guide.md for
copliot's comment (#2968)
* fix(pom): update release-docs copy command without DISCLAIMER
* docs: update output paths in AGENTS.md and development-guide.md
---
hugegraph-pd/AGENTS.md | 2 +-
hugegraph-server/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 edd9280a7..c9ba2bcfa 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-<version>.tar.gz
+# Output: hugegraph-pd/apache-hugegraph-pd-<version>.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 11875f88a..14ea65952 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 b5839e801..762cc1396 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-<version>.tar.gz
+# Output: hugegraph-store/apache-hugegraph-store-<version>.tar.gz
```
**Regenerate gRPC stubs** (after modifying `.proto` files):