You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2021/06/15 08:33:06 UTC

[iotdb] branch rel/0.11 updated: clean generated codes in client-py after post-integration-test

This is an automated email from the ASF dual-hosted git repository.

hxd pushed a commit to branch rel/0.11
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/0.11 by this push:
     new d006038  clean generated codes in client-py after post-integration-test
d006038 is described below

commit d006038f57494a1b73d40d233a59a0de2c3fc773
Author: xiangdong huang <sa...@gmail.com>
AuthorDate: Tue Jun 15 16:30:52 2021 +0800

    clean generated codes in client-py after post-integration-test
---
 client-py/pom.xml | 23 ++++++++++++++++-------
 1 file changed, 16 insertions(+), 7 deletions(-)

diff --git a/client-py/pom.xml b/client-py/pom.xml
index a7cb654..a9027d5 100644
--- a/client-py/pom.xml
+++ b/client-py/pom.xml
@@ -30,13 +30,13 @@
     <artifactId>iotdb-python-api</artifactId>
     <name>python-api</name>
     <description>Python API of IoTDB.</description>
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.iotdb</groupId>
-            <artifactId>iotdb-thrift</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
+    <!--    <dependencies>-->
+    <!--        <dependency>-->
+    <!--            <groupId>org.apache.iotdb</groupId>-->
+    <!--            <artifactId>iotdb-thrift</artifactId>-->
+    <!--            <version>${project.version}</version>-->
+    <!--        </dependency>-->
+    <!--    </dependencies>-->
     <build>
         <plugins>
             <plugin>
@@ -68,6 +68,15 @@
                         </fileset>
                     </filesets>
                 </configuration>
+                <executions>
+                    <execution>
+                        <id>clean_thrift_from_python</id>
+                        <phase>post-integration-test</phase>
+                        <goals>
+                            <goal>clean</goal>
+                        </goals>
+                    </execution>
+                </executions>
             </plugin>
             <!-- fill thrift folder -->
             <plugin>