This is an automated email from the ASF dual-hosted git repository.
vaughn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
The following commit(s) were added to refs/heads/master by this push:
new 85499f389 fix: keep binary file (#2052)
85499f389 is described below
commit 85499f389bfcbf5adc641bf361d5e22c82548886
Author: vaughn <[email protected]>
AuthorDate: Thu Dec 15 16:07:34 2022 +0800
fix: keep binary file (#2052)
---
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>