This is an automated email from the ASF dual-hosted git repository. vaughn pushed a commit to branch zy_dev in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
commit 162693aa448d34c8206dc498ca302065d2e541e1 Author: vaughn <[email protected]> AuthorDate: Thu Dec 15 13:57:48 2022 +0800 fix: keep binary file --- hugegraph-example/pom.xml | 17 +++++++++++++++++ hugegraph-test/pom.xml | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/hugegraph-example/pom.xml b/hugegraph-example/pom.xml index 781f13180..fa4a0bf9a 100644 --- a/hugegraph-example/pom.xml +++ b/hugegraph-example/pom.xml @@ -41,6 +41,23 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> + <configuration> + <filesets> + <fileset> + <directory>${top.level.dir}</directory> + <excludes> + <exclude>${final.name}/**</exclude> + <exclude>*.tar.gz</exclude> + <exclude>*.zip</exclude> + <exclude>*.tar</exclude> + </excludes> + <followSymlinks>false</followSymlinks> + </fileset> + <fileset> + <directory>${final.name}</directory> + </fileset> + </filesets> + </configuration> </plugin> </plugins> </build> diff --git a/hugegraph-test/pom.xml b/hugegraph-test/pom.xml index 7d6d8a36e..8306da9f0 100644 --- a/hugegraph-test/pom.xml +++ b/hugegraph-test/pom.xml @@ -179,6 +179,23 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> + <configuration> + <filesets> + <fileset> + <directory>${top.level.dir}</directory> + <excludes> + <exclude>${final.name}/**</exclude> + <exclude>*.tar.gz</exclude> + <exclude>*.zip</exclude> + <exclude>*.tar</exclude> + </excludes> + <followSymlinks>false</followSymlinks> + </fileset> + <fileset> + <directory>${final.name}</directory> + </fileset> + </filesets> + </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId>
