23 lines
884 B
XML
23 lines
884 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>rc-tool</artifactId>
|
|
<version>1.5.12-RELEASES</version>
|
|
<relativePath>./../pom.xml</relativePath>
|
|
</parent>
|
|
<groupId>com.red.circle</groupId>
|
|
<artifactId>rc-tool-crypto</artifactId>
|
|
<version>1.5.12-RELEASES</version>
|
|
<description>加密解密模块,提供对称、非对称和摘要算法封装</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-crypto</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|