<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>com.baeldung</groupId> <artifactId>parent-boot-5</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>pom</packaging> <name>Parent Boot 5</name> <description>Parent for all spring boot 1.5 modules</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <rest-assured.version>3.0.1</rest-assured.version> <!-- plugins --> <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> <maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version> </properties> <parent> <artifactId>spring-boot-starter-parent</artifactId> <groupId>org.springframework.boot</groupId> <version>1.5.3.RELEASE</version> <relativePath /> </parent> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <version>${rest-assured.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <forkCount>3</forkCount> <reuseForks>true</reuseForks> <excludes> <exclude>**/*IntegrationTest.java</exclude> <exclude>**/*LongRunningUnitTest.java</exclude> <exclude>**/*ManualTest.java</exclude> <exclude>**/JdbcTest.java</exclude> <exclude>**/AutoconfigurationTest.java</exclude> <exclude>**/*EntryPointsTest.java</exclude> <exclude>**/*LiveTest.java</exclude> </excludes> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>