notify-component/notify-email/pom.xml

48 lines
1.3 KiB
XML
Raw Permalink Normal View History

2021-07-02 00:32:17 +00: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">
<parent>
2022-08-20 07:26:24 +00:00
<artifactId>notify-parent</artifactId>
2022-08-17 14:01:32 +00:00
<groupId>com.simaek</groupId>
2022-08-20 07:40:59 +00:00
<version>0.1.1</version>
2021-07-02 00:32:17 +00:00
</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>
2021-07-02 05:12:21 +00:00
<dependencies>
2021-07-02 18:07:28 +00:00
2021-07-02 05:12:21 +00:00
<dependency>
2022-08-17 14:01:32 +00:00
<groupId>com.simaek</groupId>
2021-07-02 05:12:21 +00:00
<artifactId>notify-core</artifactId>
</dependency>
2021-07-02 18:07:28 +00:00
2021-07-02 05:12:21 +00:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
2021-07-02 18:07:28 +00:00
2021-07-02 05:12:21 +00:00
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId>
</dependency>
2021-07-02 18:07:28 +00:00
2021-07-02 05:12:21 +00:00
<dependency>
2022-08-21 15:48:58 +00:00
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
2021-07-02 05:12:21 +00:00
</dependency>
2021-07-02 18:07:28 +00:00
2021-07-02 05:12:21 +00:00
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
2021-07-02 18:07:28 +00:00
2021-07-02 05:12:21 +00:00
</dependencies>
2021-07-02 18:07:28 +00:00
2021-07-02 00:32:17 +00:00
</project>