<! --springboot parent project GAV -->.
<parent>
<groupId></groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<! --Current Project GAV-->.
<groupId></groupId>
<artifactId>002-springboot-springmvc</artifactId>
<version>1.0.0</version>
<properties>
<>1.8</>
</properties>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<! --dependent-->.
<dependencies>
<! --SpringBoot framework web project startup dependencies -->.
<dependency>
<groupId></groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<! --SpringBoot Framework Test Starting Dependencies -->.
<dependency>
<groupId></groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId></groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<! --Plugins for compiling and packaging SpringBoot projects -->.
<plugin>
<groupId></groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>