| 123456789101112131415161718192021222324252627282930313233343536373839404142 | <?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>        <groupId>org.dromara</groupId>        <artifactId>ruoyi-common</artifactId>        <version>${revision}</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>ruoyi-common-encrypt</artifactId>    <description>        ruoyi-common-encrypt 数据加解密模块    </description>    <dependencies>        <dependency>            <groupId>org.dromara</groupId>            <artifactId>ruoyi-common-core</artifactId>        </dependency>        <dependency>            <groupId>org.mybatis.spring.boot</groupId>            <artifactId>mybatis-spring-boot-starter</artifactId>        </dependency>        <dependency>            <groupId>org.bouncycastle</groupId>            <artifactId>bcprov-jdk15to18</artifactId>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-crypto</artifactId>        </dependency>    </dependencies></project>
 |