JAVA-11849 Disabled NPM and Frontend Tasks from Integration builds, added jhipster-5 to integration-heavy profile
This commit is contained in:
parent
b1c0a40b0e
commit
9ada6d69ae
|
@ -1090,6 +1090,66 @@
|
|||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>integration-lite-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>integration-lite-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>
|
||||
|
|
9
pom.xml
9
pom.xml
|
@ -366,7 +366,7 @@
|
|||
<module>atomix</module>
|
||||
|
||||
<module>aws-modules</module>
|
||||
|
||||
|
||||
<module>axon</module>
|
||||
|
||||
<module>azure</module>
|
||||
|
@ -836,7 +836,7 @@
|
|||
<module>atomix</module>
|
||||
|
||||
<module>aws-modules</module>
|
||||
|
||||
|
||||
<module>axon</module>
|
||||
|
||||
<module>azure</module>
|
||||
|
@ -895,7 +895,7 @@
|
|||
<module>helidon</module>
|
||||
<module>apache-httpclient</module>
|
||||
<module>httpclient-simple</module>
|
||||
<module>hystrix</module>
|
||||
<module>hystrix</module>
|
||||
|
||||
<module>jackson-modules</module>
|
||||
<module>jackson-simple</module>
|
||||
|
@ -1209,6 +1209,7 @@
|
|||
|
||||
<module>jenkins/plugins</module>
|
||||
<module>jhipster</module>
|
||||
<module>jhipster-5</module>
|
||||
<module>jws</module>
|
||||
|
||||
<module>libraries</module> <!-- very long running -->
|
||||
|
@ -1326,7 +1327,7 @@
|
|||
<module>quarkus-vs-springboot</module>
|
||||
<module>quarkus-jandex</module>
|
||||
<module>spring-boot-modules/spring-boot-cassandre</module>
|
||||
<module>spring-boot-modules/spring-boot-camel</module>
|
||||
<module>spring-boot-modules/spring-boot-camel</module>
|
||||
<module>testing-modules/testing-assertions</module>
|
||||
<module>persistence-modules/fauna</module>
|
||||
</modules>
|
||||
|
|
Loading…
Reference in New Issue