This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git
The following commit(s) were added to refs/heads/master by this push:
new 6a6cb1802f HDDS-8294. mvn clean should remove frontend build artifacts
stored in Recon src (#5055)
6a6cb1802f is described below
commit 6a6cb1802fb0fa5805d02f08578f05b2e6c78673
Author: Siyao Meng <[email protected]>
AuthorDate: Fri Jul 14 12:10:59 2023 -0700
HDDS-8294. mvn clean should remove frontend build artifacts stored in Recon
src (#5055)
---
hadoop-ozone/recon/pom.xml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/hadoop-ozone/recon/pom.xml b/hadoop-ozone/recon/pom.xml
index 85296d62cf..1d3931c3a6 100644
--- a/hadoop-ozone/recon/pom.xml
+++ b/hadoop-ozone/recon/pom.xml
@@ -135,6 +135,28 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>${maven-clean-plugin.version}</version>
+ <configuration>
+ <filesets>
+ <fileset>
+
<directory>${basedir}/src/main/resources/webapps/recon/ozone-recon-web/build</directory>
+ <includes>
+ <include>**</include>
+ </includes>
+ <followSymlinks>false</followSymlinks>
+ </fileset>
+ <fileset>
+
<directory>${basedir}/src/main/resources/webapps/recon/ozone-recon-web/node_modules</directory>
+ <includes>
+ <include>**</include>
+ </includes>
+ <followSymlinks>false</followSymlinks>
+ </fileset>
+ </filesets>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]