版本号修改为 2.0.0-snapshot
parent
3abf4c6e58
commit
4140f63867
2
pom.xml
2
pom.xml
|
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.czcb.csf</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
<name>scfs-api-sdk</name>
|
||||
<description>scfs-api-sdk</description>
|
||||
<packaging>pom</packaging>
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.csf</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
<name>scfs-api-core:核心模块</name>
|
||||
<description>scfs-api-core</description>
|
||||
<packaging>jar</packaging>
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.csf</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-rsa</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
<name>scfs-api-rsa:RSA模块</name>
|
||||
<description>封装RSA、AES国密算法</description>
|
||||
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.csf</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-service</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
<name>scfs-api-service:通用类接口</name>
|
||||
<description>通用类接口</description>
|
||||
<packaging>jar</packaging>
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.csf</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sm</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
<name>scfs-api-sm:国密模块</name>
|
||||
<description>封装SM2、SM4国密算法</description>
|
||||
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</dependency>
|
||||
|
||||
<!-- https://mvnrepository.com/artifact/com.tencent.kona/kona-crypto -->
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
package com.czcb.scfs.api.sm;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
class SmProviderTest {
|
||||
|
||||
@Test
|
||||
void getSMProvider() {
|
||||
Assertions.assertNotNull(SmProvider.getProvider());
|
||||
}
|
||||
}
|
||||
|
|
@ -5,12 +5,12 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.csf</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-spring-boot-starter</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
<name>scfs-spring-boot-starter</name>
|
||||
<description>scfs-spring-boot-starter</description>
|
||||
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.csf</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-test</artifactId>
|
||||
<version>dev-snapshot</version>
|
||||
<version>2.0.0-snapshot</version>
|
||||
<name>scfs-api-test</name>
|
||||
<description>scfs-api-test</description>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue