<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> <artifactId>spring-security-react</artifactId> <version>0.1-SNAPSHOT</version> <name>spring-security-react</name> <packaging>war</packaging> <parent> <groupId>com.baeldung</groupId> <artifactId>parent-spring-4</artifactId> <version>0.0.1-SNAPSHOT</version> <relativePath>../parent-spring-4</relativePath> </parent> <dependencies> <!-- Spring Security --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <version>${org.springframework.security.version}</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> <version>${org.springframework.security.version}</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> <version>${org.springframework.security.version}</version> </dependency> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${org.springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${org.springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${org.springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${org.springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${org.springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${org.springframework.version}</version> </dependency> <!-- web --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>${javax.servlet.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>${jstl.version}</version> <scope>runtime</scope> </dependency> </dependencies> <build> <finalName>spring-security-react</finalName> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>${maven-war-plugin.version}</version> <configuration> <warSourceExcludes> WEB-INF/view/react/node/**, WEB-INF/view/react/node_modules/**, WEB-INF/view/react/public/**, WEB-INF/view/react/src/**, WEB-INF/view/react/* </warSourceExcludes> </configuration> </plugin> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <version>${frontend-maven-plugin.version}</version> <configuration> <nodeVersion>${node.version}</nodeVersion> <npmVersion>${npm.version}</npmVersion> <workingDirectory>src/main/webapp/WEB-INF/view/react</workingDirectory> </configuration> <executions> <execution> <id>install node and npm</id> <goals> <goal>install-node-and-npm</goal> </goals> </execution> <execution> <id>npm install</id> <goals> <goal>npm</goal> </goals> </execution> <execution> <id>npm run build</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run build</arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.4.11.v20180605</version> </plugin> </plugins> </build> <properties> <!-- Spring --> <org.springframework.version>4.3.6.RELEASE</org.springframework.version> <org.springframework.security.version>4.2.1.RELEASE</org.springframework.security.version> <!-- various --> <javax.servlet.version>3.1.0</javax.servlet.version> <jstl.version>1.2</jstl.version> <!-- util --> <guava.version>19.0</guava.version> <commons-lang3.version>3.5</commons-lang3.version> <!-- Maven plugins --> <maven-war-plugin.version>2.6</maven-war-plugin.version> <maven-resources-plugin.version>2.7</maven-resources-plugin.version> <frontend-maven-plugin.version>1.6</frontend-maven-plugin.version> <jetty.version>9.4.11.v20180605</jetty.version> <!-- frontend --> <node.version>v8.11.3</node.version> <npm.version>6.1.0</npm.version> </properties> </project>