Skip to content

Commit

Permalink
[pinpoint-apm#10388] Added frontend forceclean
Browse files Browse the repository at this point in the history
  • Loading branch information
youngjin.kim2 authored and gipyeong-lee committed Nov 1, 2023
1 parent c883aee commit 5738582
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions web-frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,37 @@
<build.frontend.skip>false</build.frontend.skip>
</properties>

<profiles>
<profile>
<id>forceclean</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>node-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<filesets>
<fileset>
<directory>${project.parent.basedir}/${plugin.frontend.node.install.dir}</directory>
<includes>
<include>**</include>
</includes>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 5738582

Please sign in to comment.