xin
2025-05-30 6e4481f095c1c565c6e68e9fbd95ade3ff361210
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?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>oying</artifactId>
        <groupId>com.oying</groupId>
        <version>1.1</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
 
    <artifactId>oying-tools</artifactId>
    <name>工具模块</name>
 
    <properties>
        <mail.version>1.4.7</mail.version>
    </properties>
 
    <dependencies>
        <!-- 同时需要common模块和logging模块只需要引入logging模块即可 -->
        <dependency>
            <groupId>com.oying</groupId>
            <artifactId>oying-logging</artifactId>
            <version>1.1</version>
        </dependency>
 
        <!--邮件依赖-->
        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <version>${mail.version}</version>
        </dependency>
    </dependencies>
</project>