108 lines
3.9 KiB
XML
108 lines
3.9 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>spring-boot-compare-embedded</artifactId>
|
||
|
<version>0.0.1</version>
|
||
|
<packaging>jar</packaging>
|
||
|
<name>spring-boot-compare-embedded</name>
|
||
|
<description>This is a simple application with used to compare embedded servlet containers.</description>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-boot-2</artifactId>
|
||
|
<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>
|
||
|
|
||
|
<!-- tomcat -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- jetty -->
|
||
|
<!-- <dependency> -->
|
||
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
||
|
<!-- <artifactId>spring-boot-starter-web</artifactId> -->
|
||
|
<!-- <exclusions> -->
|
||
|
<!-- <exclusion> -->
|
||
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
||
|
<!-- <artifactId>spring-boot-starter-tomcat</artifactId> -->
|
||
|
<!-- </exclusion> -->
|
||
|
<!-- </exclusions> -->
|
||
|
<!-- </dependency> -->
|
||
|
<!-- <dependency> -->
|
||
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
||
|
<!-- <artifactId>spring-boot-starter-jetty</artifactId> -->
|
||
|
<!-- </dependency> -->
|
||
|
|
||
|
<!-- undertow -->
|
||
|
<!-- <dependency> -->
|
||
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
||
|
<!-- <artifactId>spring-boot-starter-web</artifactId> -->
|
||
|
<!-- <exclusions> -->
|
||
|
<!-- <exclusion> -->
|
||
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
||
|
<!-- <artifactId>spring-boot-starter-tomcat</artifactId> -->
|
||
|
<!-- </exclusion> -->
|
||
|
<!-- </exclusions> -->
|
||
|
<!-- </dependency> -->
|
||
|
<!-- <dependency> -->
|
||
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
||
|
<!-- <artifactId>spring-boot-starter-undertow</artifactId> -->
|
||
|
<!-- </dependency> -->
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.openjdk.jmh</groupId>
|
||
|
<artifactId>jmh-core</artifactId>
|
||
|
<version>1.21</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.openjdk.jmh</groupId>
|
||
|
<artifactId>jmh-generator-annprocess</artifactId>
|
||
|
<version>1.21</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.jayway.jsonpath</groupId>
|
||
|
<artifactId>json-path</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</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>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|