[JAVA-2276] Disabled frontend-maven-plugin for default-first and default-second profiles (#9820)

* [JAVA-2276] Upgraded maven-assembly-plugin version to 3.3.0

* [JAVA-2276] Disabling frontend-maven-plugin for default-first and default-second profiles
This commit is contained in:
François Dupire 2020-08-05 03:45:26 +02:00 committed by GitHub
parent dfb9af367f
commit e7ec3ff7bc
1 changed files with 62 additions and 0 deletions

View File

@ -1008,6 +1008,68 @@
</build>
</profile>
<!-- jhipster-needle-maven-add-profile -->
<profile>
<id>default-first</id>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>install node and npm</id>
<phase>none</phase>
</execution>
<execution>
<id>npm install</id>
<phase>none</phase>
</execution>
<execution>
<id>webpack build dev</id>
<phase>none</phase>
</execution>
<execution>
<id>webpack build test</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>default-second</id>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>install node and npm</id>
<phase>none</phase>
</execution>
<execution>
<id>npm install</id>
<phase>none</phase>
</execution>
<execution>
<id>webpack build dev</id>
<phase>none</phase>
</execution>
<execution>
<id>webpack build test</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>