2026-01-15 16:30:26 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.kapdion.pisano</groupId>
|
|
|
|
|
<artifactId>productknowledge-parent</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
2026-01-29 15:50:01 +01:00
|
|
|
|
2026-01-17 16:51:54 +01:00
|
|
|
<artifactId>client-web</artifactId>
|
2026-01-29 15:50:01 +01:00
|
|
|
<packaging>pom</packaging>
|
2026-01-15 16:30:26 +01:00
|
|
|
|
|
|
|
|
<build>
|
2026-01-29 15:50:01 +01:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
|
|
|
|
<version>1.15.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>install node and npm</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>install-node-and-npm</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<nodeVersion>v22.12.0</nodeVersion> </configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>npm install</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>npm</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<arguments>install</arguments>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>npm build</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>npm</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<arguments>run build --configuration=production</arguments>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2026-01-15 16:30:26 +01:00
|
|
|
</build>
|
|
|
|
|
</project>
|