Skip to content

Commit 7377aaa

Browse files
authored
[AINode] Fix maven verify bug (apache#16373)
1 parent 3339864 commit 7377aaa

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

.github/workflows/cluster-it-1c1d1a.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ jobs:
4848
shell: bash
4949
run: |
5050
mvn clean verify \
51-
-P with-integration-tests \
51+
-P with-integration-tests,with-ainode \
5252
-DskipUTs \
5353
-DintegrationTest.forkCount=1 \
54-
-pl integration-test \
54+
-pl integration-test,iotdb-core/ainode \
5555
-am \
5656
-PAIClusterIT
5757
- name: Upload Artifact

iotdb-core/ainode/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,24 @@
3636
<version>2.0.6-SNAPSHOT</version>
3737
<scope>provided</scope>
3838
</dependency>
39+
<dependency>
40+
<groupId>org.apache.iotdb</groupId>
41+
<artifactId>iotdb-thrift-confignode</artifactId>
42+
<version>2.0.6-SNAPSHOT</version>
43+
<scope>provided</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.apache.iotdb</groupId>
47+
<artifactId>iotdb-thrift-commons</artifactId>
48+
<version>2.0.6-SNAPSHOT</version>
49+
<scope>provided</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.apache.iotdb</groupId>
53+
<artifactId>iotdb-thrift-ainode</artifactId>
54+
<version>2.0.6-SNAPSHOT</version>
55+
<scope>provided</scope>
56+
</dependency>
3957
<dependency>
4058
<groupId>org.apache.iotdb</groupId>
4159
<artifactId>iotdb-python-api</artifactId>
@@ -329,6 +347,9 @@
329347
<usedDependency>org.apache.iotdb:iotdb-thrift-confignode</usedDependency>
330348
<usedDependency>org.apache.iotdb:iotdb-thrift-ainode</usedDependency>
331349
</usedDependencies>
350+
<ignoredUnusedDeclaredDependencies>
351+
<ignoredUnusedDeclaredDependency>org.apache.iotdb:iotdb-python-api</ignoredUnusedDeclaredDependency>
352+
</ignoredUnusedDeclaredDependencies>
332353
</configuration>
333354
</execution>
334355
</executions>

0 commit comments

Comments
 (0)