2019-10-31 21:43:47 -04: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>
<parent >
2020-07-07 23:00:05 -04:00
<groupId > com.baeldung.spring-boot-modules</groupId>
<artifactId > spring-boot-modules</artifactId>
<version > 1.0.0-SNAPSHOT</version>
<relativePath > ../</relativePath>
2019-10-31 21:43:47 -04:00
</parent>
2020-07-07 23:00:05 -04:00
<artifactId > spring-boot-performance</artifactId>
<packaging > war</packaging>
<name > spring-boot-performance</name>
<description > This is a simple Spring Boot application taking advantage of the latest Spring Boot improvements/features. Current version: 2.2</description>
2019-10-31 21:43:47 -04:00
<dependencies >
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter</artifactId>
</dependency>
2020-02-11 00:09:59 -05:00
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-web</artifactId>
</dependency>
<dependency >
<groupId > de.codecentric</groupId>
<artifactId > chaos-monkey-spring-boot</artifactId>
<version > ${chaos.monkey.version}</version>
</dependency>
2019-10-31 21:43:47 -04:00
</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>
2020-02-11 00:09:59 -05:00
<chaos.monkey.version > 2.0.0</chaos.monkey.version>
2019-10-31 21:43:47 -04:00
</properties>
</project>