Skip to content

Commit

Permalink
build: fix maven build after updating Angular to version 15
Browse files Browse the repository at this point in the history
* In the maven pom.xml file node version upgraded, npm version upgraded and temporarily added
parameter --legacy-peer-deps to npm install.
  • Loading branch information
HejdaJakub committed Mar 9, 2023
1 parent ddf3e3c commit 3ed526a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend-plugin.version}</version>
<configuration>
<nodeVersion>v15.5.1</nodeVersion>
<npmVersion>7.19.0</npmVersion>
<nodeVersion>v18.15.0</nodeVersion>
<npmVersion>9.5.0</npmVersion>
<workingDirectory>src/main/web/</workingDirectory>
</configuration>
<executions>
Expand All @@ -38,6 +38,9 @@
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>install --legacy-peer-deps</arguments>
</configuration>
</execution>
<execution>
<id>admin-gui</id>
Expand Down

0 comments on commit 3ed526a

Please sign in to comment.