This is an automated email from the ASF dual-hosted git repository. yongzao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push: new 7377aaa4360 [AINode] Fix maven verify bug (#16373) 7377aaa4360 is described below commit 7377aaa4360a7dc57e97d668b0e622f060670410 Author: Yongzao <yong...@apache.org> AuthorDate: Tue Sep 9 14:58:44 2025 +0800 [AINode] Fix maven verify bug (#16373) --- .github/workflows/cluster-it-1c1d1a.yml | 4 ++-- iotdb-core/ainode/pom.xml | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cluster-it-1c1d1a.yml b/.github/workflows/cluster-it-1c1d1a.yml index 770c2193d83..f1b583f8efe 100644 --- a/.github/workflows/cluster-it-1c1d1a.yml +++ b/.github/workflows/cluster-it-1c1d1a.yml @@ -48,10 +48,10 @@ jobs: shell: bash run: | mvn clean verify \ - -P with-integration-tests \ + -P with-integration-tests,with-ainode \ -DskipUTs \ -DintegrationTest.forkCount=1 \ - -pl integration-test \ + -pl integration-test,iotdb-core/ainode \ -am \ -PAIClusterIT - name: Upload Artifact diff --git a/iotdb-core/ainode/pom.xml b/iotdb-core/ainode/pom.xml index d9a15aeb0a7..25f7053145d 100644 --- a/iotdb-core/ainode/pom.xml +++ b/iotdb-core/ainode/pom.xml @@ -36,6 +36,24 @@ <version>2.0.6-SNAPSHOT</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>org.apache.iotdb</groupId> + <artifactId>iotdb-thrift-confignode</artifactId> + <version>2.0.6-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.iotdb</groupId> + <artifactId>iotdb-thrift-commons</artifactId> + <version>2.0.6-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.iotdb</groupId> + <artifactId>iotdb-thrift-ainode</artifactId> + <version>2.0.6-SNAPSHOT</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.apache.iotdb</groupId> <artifactId>iotdb-python-api</artifactId> @@ -329,6 +347,9 @@ <usedDependency>org.apache.iotdb:iotdb-thrift-confignode</usedDependency> <usedDependency>org.apache.iotdb:iotdb-thrift-ainode</usedDependency> </usedDependencies> + <ignoredUnusedDeclaredDependencies> + <ignoredUnusedDeclaredDependency>org.apache.iotdb:iotdb-python-api</ignoredUnusedDeclaredDependency> + </ignoredUnusedDeclaredDependencies> </configuration> </execution> </executions>