You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
915 B
30 lines
915 B
|
1 month ago
|
<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>io.huimu</groupId>
|
||
|
|
<artifactId>hm-oeis-3.0</artifactId>
|
||
|
|
<version>2.8.0</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<artifactId>huimu-common</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<description>huimu-common</description>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<finalName>${project.artifactId}</finalName>
|
||
|
|
</build>
|
||
|
|
<dependencies>
|
||
|
|
<!-- SM加密算法依赖 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.bouncycastle</groupId>
|
||
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
||
|
|
<version>1.68</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- SM4加密算法依赖 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-crypto</artifactId>
|
||
|
|
<version>5.7.1</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|