jetlinks-community/jetlinks-components/notify-component/notify-email/pom.xml

55 lines
1.8 KiB
XML
Raw Normal View History

2020-02-19 07:03:38 +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>
<artifactId>notify-component</artifactId>
<groupId>org.jetlinks.community</groupId>
2024-09-27 03:09:22 +00:00
<version>2.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
2020-02-19 07:03:38 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>notify-email</artifactId>
<dependencies>
<dependency>
<groupId>org.jetlinks</groupId>
<artifactId>rule-engine-support</artifactId>
<version>${jetlinks.version}</version>
</dependency>
<dependency>
<groupId>org.jetlinks.community</groupId>
<artifactId>notify-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
2021-05-20 08:52:30 +00:00
<!-- <dependency>-->
<!-- <groupId>javax.mail</groupId>-->
<!-- <artifactId>mail</artifactId>-->
<!-- <version>1.4.7</version>-->
<!-- </dependency>-->
2020-02-19 07:03:38 +00:00
<dependency>
2021-05-20 08:52:30 +00:00
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId>
2020-02-19 07:03:38 +00:00
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
2022-06-13 07:38:37 +00:00
<dependency>
<groupId>org.jetlinks.community</groupId>
<artifactId>io-component</artifactId>
<version>${project.version}</version>
</dependency>
2020-02-19 07:03:38 +00:00
</dependencies>
</project>