Fix mvn clean of js/ directory
Fixes: #26021 Signed-off-by: Hynek Mlnarik <hmlnarik@redhat.com>
This commit is contained in:
parent
1945897c85
commit
74bb5856cc
1 changed files with 23 additions and 0 deletions
23
js/pom.xml
23
js/pom.xml
|
@ -51,6 +51,29 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-clean-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<followSymLinks>false</followSymLinks>
|
||||||
|
<filesets>
|
||||||
|
<fileset>
|
||||||
|
<directory>${basedir}</directory>
|
||||||
|
<includes>
|
||||||
|
<include>**/.wireit/**</include>
|
||||||
|
<include>**/node_modules/**</include>
|
||||||
|
</includes>
|
||||||
|
</fileset>
|
||||||
|
<!-- include all non-maven projects here as well -->
|
||||||
|
<fileset>
|
||||||
|
<directory>apps/keycloak-server</directory>
|
||||||
|
<includes>
|
||||||
|
<include>server/**</include>
|
||||||
|
</includes>
|
||||||
|
</fileset>
|
||||||
|
</filesets>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue