2019-10-31 20:43:47 -05:00
<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-boot-performance</artifactId>
<name> spring-boot-performance</name>
<packaging> war</packaging>
<description> This is a simple Spring Boot application taking advantage of the latest Spring Boot improvements/features. Current version: 2.2</description>
<parent>
<groupId> com.baeldung</groupId>
2019-12-05 16:56:52 +02:00
<artifactId> parent-boot-2</artifactId>
2019-10-31 20:43:47 -05:00
<version> 0.0.1-SNAPSHOT</version>
<relativePath> ../parent-boot-2</relativePath>
</parent>
<dependencies>
<dependency>
<groupId> org.springframework.boot</groupId>
<artifactId> spring-boot-starter</artifactId>
</dependency>
</dependencies>
<build>
<finalName> spring-boot-performance</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>
</plugin>
</plugins>
</build>
<properties>
<!-- The main class to start by executing java -jar -->
<start-class> com.baeldung.lazyinitialization.Application</start-class>
</properties>
</project>