| 123456789101112131415161718192021222324252627282930 | <?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>elab-parent</artifactId>        <groupId>com.elab.core</groupId>        <version>2.0.5.3-SNAPSHOT</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>elab-alert</artifactId>    <dependencies>        <dependency>            <groupId>com.elab.core</groupId>            <artifactId>elab-core</artifactId>            <version>${project.version}</version>        </dependency>        <dependency>            <groupId>javax.mail</groupId>            <artifactId>mail</artifactId>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-http</artifactId>            <version>4.1.21</version>        </dependency>    </dependencies></project>
 |