This is an automated email from the ASF dual-hosted git repository. jin pushed a commit to branch clean in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-commons.git
commit ca34ed9cf1a7c35571aa987cba62730fa2fa6399 Author: imbajin <[email protected]> AuthorDate: Wed Oct 19 21:53:14 2022 +0800 refact: improve some code This reverts commit e58f5d4c632f2095bacac1d29bafe1cbbb9fb8bb. --- hugegraph-common/pom.xml | 2 +- .../java/org/apache/hugegraph/unit/concurrent/BarrierEventTest.java | 2 +- hugegraph-rpc/pom.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hugegraph-common/pom.xml b/hugegraph-common/pom.xml index a188f9f..2a47ea8 100644 --- a/hugegraph-common/pom.xml +++ b/hugegraph-common/pom.xml @@ -27,7 +27,7 @@ </parent> <artifactId>hugegraph-common</artifactId> - <name>${artifactId}</name> + <name>${project.artifactId}</name> <url>https://github.com/apache/incubator-hugegraph-commons/tree/master/hugegraph-common</url> <description> hugegraph-common is a common module for HugeGraph and its peripheral components. diff --git a/hugegraph-common/src/test/java/org/apache/hugegraph/unit/concurrent/BarrierEventTest.java b/hugegraph-common/src/test/java/org/apache/hugegraph/unit/concurrent/BarrierEventTest.java index 64a0d49..bc69386 100644 --- a/hugegraph-common/src/test/java/org/apache/hugegraph/unit/concurrent/BarrierEventTest.java +++ b/hugegraph-common/src/test/java/org/apache/hugegraph/unit/concurrent/BarrierEventTest.java @@ -32,7 +32,7 @@ import org.apache.hugegraph.testutil.Assert; public class BarrierEventTest { - private static int WAIT_THREADS_COUNT = 10; + private static final int WAIT_THREADS_COUNT = 10; @Test(timeout = 5000) public void testAWait() throws InterruptedException { diff --git a/hugegraph-rpc/pom.xml b/hugegraph-rpc/pom.xml index ba61ba6..54f8403 100644 --- a/hugegraph-rpc/pom.xml +++ b/hugegraph-rpc/pom.xml @@ -27,7 +27,7 @@ </parent> <artifactId>hugegraph-rpc</artifactId> - <name>${artifactId}</name> + <name>${project.artifactId}</name> <description>HugeGraph RPC component</description> <properties>
