Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hugegraph-pd/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions hugegraph-store/docs/development-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
```

Expand All @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion install-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading