JAVA-6216 Disabled npm build from default profiles (#11146)
* JAVA-6216 Disabled npm build from default profiles * JAVA-6216 disabled frontend-maven-plugin from the build
This commit is contained in:
parent
6ecf7ec207
commit
77a32b7f37
|
@ -108,7 +108,10 @@
|
||||||
</warSourceExcludes>
|
</warSourceExcludes>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<!-- NPM build is disabled from profile specific configurations because in a multi-threaded run environment like Jenkins this build was not succeeding due to issues totally unrelated to this module
|
||||||
|
This can be enabled manually while running this module on local, or directly npm can be run inside the webapp folder
|
||||||
|
-->
|
||||||
|
<!-- <plugin>
|
||||||
<groupId>com.github.eirslett</groupId>
|
<groupId>com.github.eirslett</groupId>
|
||||||
<artifactId>frontend-maven-plugin</artifactId>
|
<artifactId>frontend-maven-plugin</artifactId>
|
||||||
<version>${frontend-maven-plugin.version}</version>
|
<version>${frontend-maven-plugin.version}</version>
|
||||||
|
@ -139,7 +142,7 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin> -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.eclipse.jetty</groupId>
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
<artifactId>jetty-maven-plugin</artifactId>
|
<artifactId>jetty-maven-plugin</artifactId>
|
||||||
|
@ -148,7 +151,11 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<profiles>
|
|
||||||
|
<!-- NPM build is disabled from profile specific configurations because in a multi-threaded run environment like Jenkins this build was not succeeding due to issues totally unrelated to this module
|
||||||
|
This can be enabled manually while running this module on local, or directly npm can be run inside the webapp folder
|
||||||
|
-->
|
||||||
|
<!-- <profiles>
|
||||||
<profile>
|
<profile>
|
||||||
<id>default-first</id>
|
<id>default-first</id>
|
||||||
<build>
|
<build>
|
||||||
|
@ -199,7 +206,7 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles> -->
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<!-- util -->
|
<!-- util -->
|
||||||
|
|
Loading…
Reference in New Issue