<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>

	<groupId>fc.doc.react</groupId>
	<artifactId>test-dashboard-client</artifactId>
	<version>1.0.0-SNAPSHOT</version>
	<packaging>pom</packaging>

	<name>Test Dashboard Webclient</name>

	<dependencies>

	</dependencies>

	<build>
	  
	   <plugins>
			<plugin>
				<groupId>com.github.eirslett</groupId>
				<artifactId>frontend-maven-plugin</artifactId>
				<version>1.4</version>
				<executions>
                   <execution>
						<id>install node and npm</id>
						<goals>
							<goal>install-node-and-npm</goal>
						</goals>
						<configuration>
							<nodeVersion>v7.8.0</nodeVersion>
							<npmVersion>4.4.4</npmVersion>
						</configuration>
				   </execution>
				  
				</executions>
			</plugin>
		</plugins>
		
	</build>
	
</project>
