2016-07-28 11:41:17 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-08-18 15:33:41 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-12-22 02:15:11 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-07-28 11:41:17 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>org.baeldung.spring</groupId>
|
2016-12-22 02:15:11 -05:00
|
|
|
<artifactId>spring-mvc-email</artifactId>
|
2016-08-22 16:58:18 -04:00
|
|
|
<version>1.0</version>
|
2016-12-22 02:15:11 -05:00
|
|
|
<name>spring-mvc-email</name>
|
2016-07-28 11:41:17 -04:00
|
|
|
<packaging>war</packaging>
|
2016-08-18 15:33:41 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2016-12-06 17:18:52 -05:00
|
|
|
<version>1.4.2.RELEASE</version>
|
2016-08-18 15:33:41 -04:00
|
|
|
<relativePath></relativePath>
|
|
|
|
</parent>
|
2016-07-28 11:41:17 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2016-08-18 15:33:41 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2016-07-28 11:41:17 -04:00
|
|
|
</dependency>
|
2016-08-22 16:58:18 -04:00
|
|
|
<!-- Spring Boot Starter Mail dependency -->
|
2016-07-28 11:41:17 -04:00
|
|
|
<dependency>
|
2016-08-18 15:33:41 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
2016-07-28 11:41:17 -04:00
|
|
|
</dependency>
|
2016-08-22 16:58:18 -04:00
|
|
|
<!-- The following two dependencies included to render jsp pages -->
|
2016-07-28 11:41:17 -04:00
|
|
|
<dependency>
|
2016-08-22 16:58:18 -04:00
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
2016-07-28 11:41:17 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-08-22 16:58:18 -04:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
2016-07-28 11:41:17 -04:00
|
|
|
</dependency>
|
2016-08-18 15:33:41 -04:00
|
|
|
</dependencies>
|
2016-07-28 11:41:17 -04:00
|
|
|
|
2016-08-18 15:33:41 -04:00
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
</properties>
|
2016-07-28 11:41:17 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2016-08-18 15:33:41 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2016-07-28 11:41:17 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-12-22 02:15:11 -05:00
|
|
|
|
2016-08-18 15:33:41 -04:00
|
|
|
</project>
|