2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-07-15 00:29:54 -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/maven-v4_0_0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.undertow</groupId>
|
|
|
|
<artifactId>undertow</artifactId>
|
|
|
|
<name>undertow</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-11-24 09:49:58 -05:00
|
|
|
<artifactId>server-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.undertow</groupId>
|
|
|
|
<artifactId>undertow-servlet</artifactId>
|
|
|
|
<version>${undertow-servlet.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
2022-09-13 11:52:49 -04:00
|
|
|
<!-- disabling shade plugin as it is causing issues with creating dependency-reduced-pom -->
|
|
|
|
<!-- on the build server <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> -->
|
|
|
|
<!-- <version>${maven-shade-plugin.version}</version> <executions> <execution> <phase>package</phase> -->
|
|
|
|
<!--<goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> -->
|
2019-10-31 21:43:47 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>${maven-jar-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>com.baeldung.undertow.SimpleServer</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<undertow-servlet.version>1.4.18.Final</undertow-servlet.version>
|
2022-07-15 00:29:54 -04:00
|
|
|
<!--<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version> -->
|
2019-10-31 21:43:47 -04:00
|
|
|
<maven-jar-plugin.version>3.0.2</maven-jar-plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
2022-12-20 12:07:54 -05:00
|
|
|
</project>
|