2014-10-29 22:25:39 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-06-01 05:27:23 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-03-17 00:01:11 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2014-10-29 22:25:39 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starters</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2014-10-29 22:25:39 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
<name>Spring Boot Mail Starter</name>
|
2016-03-30 00:19:29 +08:00
|
|
|
<description>Starter for using Java Mail and Spring Framework's email sending
|
|
|
|
support</description>
|
2014-10-29 22:25:39 +08:00
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
2014-10-29 22:25:39 +08:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-10-30 00:36:59 +08:00
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>javax.mail</artifactId>
|
2014-10-29 22:25:39 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|