2019-10-31 20:43:47 -05:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
2021-05-13 22:46:18 +05:30
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" >
2019-10-31 20:43:47 -05:00
<modelVersion> 4.0.0</modelVersion>
2021-05-13 22:46:18 +05:30
<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 20:43:47 -05:00
<parent>
2020-07-08 05:00:05 +02:00
<groupId> com.baeldung.spring-boot-modules</groupId>
<artifactId> spring-boot-modules</artifactId>
<version> 1.0.0-SNAPSHOT</version>
<relativePath> ../</relativePath>
2019-10-31 20:43:47 -05:00
</parent>
<dependencies>
<dependency>
<groupId> org.springframework.boot</groupId>
<artifactId> spring-boot-starter</artifactId>
</dependency>
2020-02-11 10:39:59 +05:30
<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 20:43:47 -05: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 10:39:59 +05:30
<chaos.monkey.version> 2.0.0</chaos.monkey.version>
2019-10-31 20:43:47 -05:00
</properties>
2021-05-13 22:46:18 +05:30
</project>