2016-08-30 21:18:02 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-08-30 21:18:02 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-05-11 03:11:13 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
2016-10-23 21:45:07 -04:00
|
|
|
<artifactId>patterns-parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2016-09-30 22:29:36 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2016-10-23 21:45:07 -04:00
|
|
|
<relativePath>..</relativePath>
|
2016-09-30 22:29:36 -04:00
|
|
|
</parent>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
2018-04-26 02:50:35 -04:00
|
|
|
<modules>
|
|
|
|
<module>front-controller</module>
|
|
|
|
<module>intercepting-filter</module>
|
2018-05-11 03:11:13 -04:00
|
|
|
<module>design-patterns</module>
|
2018-04-26 02:50:35 -04:00
|
|
|
</modules>
|
2016-09-30 22:29:36 -04:00
|
|
|
|
2016-10-23 21:45:07 -04:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2016-12-10 14:23:57 -05:00
|
|
|
<version>${javax.servlet-api.version}</version>
|
2016-10-23 21:45:07 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2016-08-30 21:18:02 -04:00
|
|
|
|
|
|
|
<build>
|
2016-10-23 21:45:07 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2016-12-10 14:23:57 -05:00
|
|
|
<version>${maven-war-plugin.version}</version>
|
2016-10-23 21:45:07 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
2016-12-10 14:23:57 -05:00
|
|
|
<version>${jetty-maven-plugin.version}</version>
|
2016-10-23 21:45:07 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2016-08-30 21:18:02 -04:00
|
|
|
</build>
|
2017-05-12 14:32:54 -04:00
|
|
|
|
2016-12-10 14:23:57 -05:00
|
|
|
<properties>
|
2017-05-12 14:32:54 -04:00
|
|
|
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
|
2016-12-10 14:23:57 -05:00
|
|
|
<maven-war-plugin.version>3.0.0</maven-war-plugin.version>
|
|
|
|
<jetty-maven-plugin.version>9.4.0.v20161208</jetty-maven-plugin.version>
|
|
|
|
</properties>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
2017-11-19 14:45:54 -05:00
|
|
|
</project>
|