<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>eu.europa.ec.edelivery</groupId> <artifactId>smp-parent-pom</artifactId> <version>4.1.0-SNAPSHOT</version> <relativePath>../smp-parent-pom/pom.xml</relativePath> </parent> <artifactId>smp-angular</artifactId> <packaging>jar</packaging> <name>SMP Angular UI</name> <properties> <frontend-maven-plugin.version>1.3</frontend-maven-plugin.version> <node.version>v8.9.1</node.version> <npm.version>5.3.0</npm.version> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <version>${frontend-maven-plugin.version}</version> <executions> <execution> <id>install node and npm</id> <goals> <goal>install-node-and-npm</goal> </goals> <configuration> <nodeVersion>${node.version}</nodeVersion> <npmVersion>${npm.version}</npmVersion> </configuration> </execution> <execution> <id>npm install</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>install --unsafe-perm</arguments> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.0.0</version> <configuration> <filesets> <fileset> <directory>./src/main/resources/META-INF/resources</directory> <includes> <include>**/*</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>prod</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run-script prod</arguments> </configuration> <phase>generate-resources</phase> </execution> </executions> </plugin> </plugins> </build> </project>