2016-08-30 21:18:02 -04:00
|
|
|
<?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>
|
|
|
|
|
2016-09-30 10:10:03 -04:00
|
|
|
<groupId>com.baeldung.enterprise.patterns</groupId>
|
|
|
|
<artifactId>patterns</artifactId>
|
2016-08-30 21:18:02 -04:00
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
2016-09-01 08:09:51 -04:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2016-09-03 13:40:09 -04:00
|
|
|
<version>3.1.0</version>
|
2016-08-30 21:18:02 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2016-09-30 10:10:03 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2016-08-30 21:18:02 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-09-30 10:10:03 -04:00
|
|
|
<version>3.5.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
2016-08-30 21:18:02 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2016-09-01 08:09:51 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
2016-09-05 00:09:37 -04:00
|
|
|
<version>9.4.0.M1</version>
|
2016-08-30 21:18:02 -04:00
|
|
|
<configuration>
|
2016-09-01 08:09:51 -04:00
|
|
|
<webApp>
|
|
|
|
<contextPath>/front-controller</contextPath>
|
|
|
|
</webApp>
|
2016-08-30 21:18:02 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|