37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.czcb.csf</groupId>
|
|
<artifactId>scfs-api-sdk</artifactId>
|
|
<version>20240419-snapshot</version>
|
|
</parent>
|
|
|
|
<groupId>com.czcb.scfs</groupId>
|
|
<artifactId>scfs-api-rsa</artifactId>
|
|
<version>20240419-snapshot</version>
|
|
<name>scfs-api-rsa:RSA模块</name>
|
|
<description>封装RSA、AES国密算法</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.czcb.scfs</groupId>
|
|
<artifactId>scfs-api-core</artifactId>
|
|
<version>20240419-snapshot</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|