diff --git a/geaflow-cstore/java/pom.xml b/geaflow-cstore/java/pom.xml
index c07b9d7ce..79a0cf58b 100644
--- a/geaflow-cstore/java/pom.xml
+++ b/geaflow-cstore/java/pom.xml
@@ -23,6 +23,34 @@
0.1.3.1
jar
+ ${project.groupId}:${project.artifactId}
+ TuGraph-analytics is a distributed streaming computing engine based on graph model.
+ https://github.com/TuGraph-family/tugraph-analytics
+
+
+
+ The Apache Software License, Version 2.0
+ http://www.apache.org/licenses/LICENSE-2.0.txt
+ repo
+
+
+
+
+
+ tugraph
+ tugraph
+
+ Developer
+
+
+
+
+
+ https://github.com/TuGraph-family/tugraph-analytics.git
+ https://github.com/TuGraph-family/analytics.git
+ https://github.com/TuGraph-family/analytics
+
+
1.11.2
6.14.2
@@ -101,6 +129,15 @@
+
+ central
+ Central Repository
+ https://repo.maven.apache.org/maven2
+ default
+
+ false
+
+
aliyun
https://maven.aliyun.com/repository/public
@@ -125,4 +162,90 @@
+
+
+ ossrh
+ https://oss.sonatype.org/service/local/staging/deploy/maven2/
+
+
+
+
+
+ release
+
+
+
+
+ org.apache.maven.plugins
+ maven-source-plugin
+ 2.2.1
+
+
+ package
+
+ jar-no-fork
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+ 2.9.1
+
+ private
+ true
+ UTF-8
+ UTF-8
+ UTF-8
+ false
+ -Xdoclint:none
+
+
+
+ package
+
+ jar
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.0
+
+
+ 1.8
+ true
+ true
+ UTF-8
+
+
+
+
+ org.apache.maven.plugins
+ maven-release-plugin
+ 2.5.1
+
+
+ org.apache.maven.plugins
+ maven-gpg-plugin
+ 1.6
+
+
+ sign-artifacts
+ install
+
+ sign
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/geaflow/geaflow-plugins/geaflow-store/pom.xml b/geaflow/geaflow-plugins/geaflow-store/pom.xml
index d2fb2858a..0cc7033a6 100644
--- a/geaflow/geaflow-plugins/geaflow-store/pom.xml
+++ b/geaflow/geaflow-plugins/geaflow-store/pom.xml
@@ -32,7 +32,7 @@
geaflow-store-rocksdb
geaflow-store-redis
geaflow-store-jdbc
-
+ geaflow-store-cstore
diff --git a/geaflow/geaflow-state/geaflow-state-impl/pom.xml b/geaflow/geaflow-state/geaflow-state-impl/pom.xml
index 0215820e4..93339c652 100644
--- a/geaflow/geaflow-state/geaflow-state-impl/pom.xml
+++ b/geaflow/geaflow-state/geaflow-state-impl/pom.xml
@@ -49,10 +49,10 @@
geaflow-state-strategy
-
-
-
-
+
+ com.antgroup.tugraph
+ geaflow-store-cstore
+
diff --git a/geaflow/geaflow-state/geaflow-state-impl/src/test/java/com/antgroup/geaflow/state/CStoreGraphStateTest.java b/geaflow/geaflow-state/geaflow-state-impl/src/test/java/com/antgroup/geaflow/state/CStoreGraphStateTest.java
index 05c810079..62f957ba8 100644
--- a/geaflow/geaflow-state/geaflow-state-impl/src/test/java/com/antgroup/geaflow/state/CStoreGraphStateTest.java
+++ b/geaflow/geaflow-state/geaflow-state-impl/src/test/java/com/antgroup/geaflow/state/CStoreGraphStateTest.java
@@ -62,10 +62,8 @@
import org.slf4j.LoggerFactory;
import org.testng.Assert;
import org.testng.annotations.BeforeClass;
-import org.testng.annotations.Ignore;
import org.testng.annotations.Test;
-@Ignore
public class CStoreGraphStateTest {
private static final Logger LOGGER = LoggerFactory.getLogger(CStoreGraphStateTest.class);
diff --git a/geaflow/geaflow-state/geaflow-state-impl/src/test/java/com/antgroup/geaflow/state/StaticGraphStateTest.java b/geaflow/geaflow-state/geaflow-state-impl/src/test/java/com/antgroup/geaflow/state/StaticGraphStateTest.java
index 987635fb8..2e34c3175 100644
--- a/geaflow/geaflow-state/geaflow-state-impl/src/test/java/com/antgroup/geaflow/state/StaticGraphStateTest.java
+++ b/geaflow/geaflow-state/geaflow-state-impl/src/test/java/com/antgroup/geaflow/state/StaticGraphStateTest.java
@@ -80,7 +80,7 @@ public Object[] factoryMethod() {
new StaticGraphStateTest(StoreType.MEMORY, new HashMap<>()),
new StaticGraphStateTest(StoreType.MEMORY, ImmutableMap.of(MemoryConfigKeys.CSR_MEMORY_ENABLE.getKey(), "true")),
new StaticGraphStateTest(StoreType.ROCKSDB, ImmutableMap.of(ExecutionConfigKeys.JOB_APP_NAME.getKey(), "StaticGraphStateTest")),
- //new StaticGraphStateTest(StoreType.CSTORE, ImmutableMap.of(ExecutionConfigKeys.JOB_APP_NAME.getKey(), "StaticGraphStateTest")),
+ new StaticGraphStateTest(StoreType.CSTORE, ImmutableMap.of(ExecutionConfigKeys.JOB_APP_NAME.getKey(), "StaticGraphStateTest")),
};
}
}
diff --git a/geaflow/geaflow-state/geaflow-state-strategy/pom.xml b/geaflow/geaflow-state/geaflow-state-strategy/pom.xml
index b5b732def..c3f2f38e2 100644
--- a/geaflow/geaflow-state/geaflow-state-strategy/pom.xml
+++ b/geaflow/geaflow-state/geaflow-state-strategy/pom.xml
@@ -55,10 +55,10 @@
com.antgroup.tugraph
geaflow-store-rocksdb
-
-
-
-
+
+ com.antgroup.tugraph
+ geaflow-store-cstore
+
com.antgroup.tugraph
geaflow-view-meta
diff --git a/geaflow/pom.xml b/geaflow/pom.xml
index db7f0668a..2aad8d63f 100644
--- a/geaflow/pom.xml
+++ b/geaflow/pom.xml
@@ -574,11 +574,11 @@
geaflow-store-rocksdb
${project.version}
-
-
-
-
-
+
+ com.antgroup.tugraph
+ geaflow-store-cstore
+ ${project.version}
+
com.antgroup.tugraph
geaflow-store-redis