feat: 添加邮件模块

This commit is contained in:
椰子 2021-07-02 08:32:17 +08:00
parent 148ad645bc
commit 5c34975b81
2 changed files with 20 additions and 0 deletions

19
notify-email/pom.xml Normal file
View File

@ -0,0 +1,19 @@
<?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">
<parent>
<artifactId>notify</artifactId>
<groupId>com.cicdi</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>notify-email</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>

View File

@ -10,6 +10,7 @@
<version>1.0-SNAPSHOT</version>
<modules>
<module>notify-core</module>
<module>notify-email</module>
</modules>
<properties>