This is an automated email from the ASF dual-hosted git repository.
imbajin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hugegraph.git
The following commit(s) were added to refs/heads/master by this push:
new 74e439fbb chore(commons): remove redundant version property (#3089)
74e439fbb is described below
commit 74e439fbbcd8292951e402e7cec1ef741a1670b4
Author: Dev Hingu <[email protected]>
AuthorDate: Sun Jul 12 17:57:09 2026 +0530
chore(commons): remove redundant version property (#3089)
* fix(deps): remove redundant hugegraph-commons.version property
* fix(deps): update stale reference of hugegraph-commons.version
---
.../hugegraph-common/src/main/resources/version.properties | 2 +-
hugegraph-pd/hg-pd-service/pom.xml | 2 +-
hugegraph-server/pom.xml | 4 ++--
hugegraph-store/hg-store-rocksdb/pom.xml | 2 +-
pom.xml | 1 -
5 files changed, 5 insertions(+), 6 deletions(-)
diff --git
a/hugegraph-commons/hugegraph-common/src/main/resources/version.properties
b/hugegraph-commons/hugegraph-common/src/main/resources/version.properties
index b6763a32a..2dffc6f3a 100644
--- a/hugegraph-commons/hugegraph-common/src/main/resources/version.properties
+++ b/hugegraph-commons/hugegraph-common/src/main/resources/version.properties
@@ -14,7 +14,7 @@
# limitations under the License.
# When updating the version, Version can be read from the pom file.
-# When hugegraph-common is updated, hugegraph-commons.version in the pom file
needs to be updated,
+# hugegraph-common follows the project version defined by ${revision} in the
root pom.xml,
# and VersionInBash needs to be updated in this file.
Version=${revision}
ApiVersion=0.71
diff --git a/hugegraph-pd/hg-pd-service/pom.xml
b/hugegraph-pd/hg-pd-service/pom.xml
index f69bc9dec..ee78863f3 100644
--- a/hugegraph-pd/hg-pd-service/pom.xml
+++ b/hugegraph-pd/hg-pd-service/pom.xml
@@ -142,7 +142,7 @@
<dependency>
<groupId>org.apache.hugegraph</groupId>
<artifactId>hugegraph-common</artifactId>
- <version>${hugegraph-commons.version}</version>
+ <version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
diff --git a/hugegraph-server/pom.xml b/hugegraph-server/pom.xml
index 1ef5ed957..226199cdc 100644
--- a/hugegraph-server/pom.xml
+++ b/hugegraph-server/pom.xml
@@ -80,12 +80,12 @@
<dependency>
<groupId>org.apache.hugegraph</groupId>
<artifactId>hugegraph-rpc</artifactId>
- <version>${hugegraph-commons.version}</version>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hugegraph</groupId>
<artifactId>hugegraph-common</artifactId>
- <version>${hugegraph-commons.version}</version>
+ <version>${project.version}</version>
</dependency>
<!-- logging -->
diff --git a/hugegraph-store/hg-store-rocksdb/pom.xml
b/hugegraph-store/hg-store-rocksdb/pom.xml
index bb463d7ed..cd9cf28c6 100644
--- a/hugegraph-store/hg-store-rocksdb/pom.xml
+++ b/hugegraph-store/hg-store-rocksdb/pom.xml
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.apache.hugegraph</groupId>
<artifactId>hugegraph-common</artifactId>
- <version>${hugegraph-commons.version}</version>
+ <version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.glassfish.jersey.inject</groupId>
diff --git a/pom.xml b/pom.xml
index 850ac99fa..045a24ad5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -88,7 +88,6 @@
<properties>
<fabric8.version>5.6.0</fabric8.version>
<revision>1.7.0</revision>
- <hugegraph-commons.version>1.7.0</hugegraph-commons.version>
<lombok.version>1.18.30</lombok.version>
<release.name>hugegraph</release.name>
<maven.compiler.source>11</maven.compiler.source>