Skip to content

Commit

Permalink
JAVA-11849 Disabled NPM and Frontend Tasks from Integration builds, a…
Browse files Browse the repository at this point in the history
…dded jhipster-5 to integration-heavy profile
  • Loading branch information
dkapil committed May 19, 2022
1 parent f04be86 commit 28f49c5
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 4 deletions.
60 changes: 60 additions & 0 deletions jhipster-5/bookstore-monolith/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@
<module>atomix</module>

<module>aws-modules</module>

<module>axon</module>

<module>azure</module>
Expand Down Expand Up @@ -836,7 +836,7 @@
<module>atomix</module>

<module>aws-modules</module>

<module>axon</module>

<module>azure</module>
Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -1209,6 +1209,7 @@

<module>jenkins/plugins</module>
<module>jhipster</module>
<module>jhipster-5</module>
<module>jws</module>

<module>libraries</module> <!-- very long running -->
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 28f49c5

Please sign in to comment.