[Project] remove bower_components in release profile before running npm install

This commit is contained in:
Robert von Burg 2022-07-15 10:05:11 +02:00
parent 0e4029fe57
commit 3a355bb383
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 16 additions and 0 deletions

View File

@ -359,6 +359,22 @@
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven-clean-plugin.version}</version>
<configuration>
<filesets>
<fileset>
<directory>src/main/webapp/app/bower_components</directory>
<includes>
<include>**</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>