Skip to content

Commit

Permalink
support kmsv3 (#8)
Browse files Browse the repository at this point in the history
* support kmsv3

* tiny fix

* fix #6

* tiny fix

* version 1.0.3

* add log keyId

* add key deletion protection

* fix

* add no-args constructor

* fix up

* fix up mvn dependencies bug

* add exception infomation

* add exception infomation

* throw nacos exception

* throw nacos exception

* ca is not necessary

* change log level

* ca is not necessary
  • Loading branch information
robynron authored Nov 9, 2023
1 parent 5533d08 commit f0dca79
Show file tree
Hide file tree
Showing 9 changed files with 642 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ hs_err_pid*
.project
.settings/
*.iml
target/
target/
35 changes: 31 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<inceptionYear>2018</inceptionYear>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-client-mse-extension</artifactId>
<version>1.0.2-beta</version>
<version>1.0.3</version>
<packaging>jar</packaging>

<developers>
Expand Down Expand Up @@ -51,26 +51,39 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<nacos.version>1.4.2-SNAPSHOT</nacos.version>
<nacos.version>2.2.4</nacos.version>
</properties>

<dependencies>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<version>4.5.20</version>
<version>4.5.17</version>
</dependency>

<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-kms</artifactId>
<version>2.14.0</version>
<version>2.16.3</version>
</dependency>

<dependency>
<groupId>com.aliyun.kms</groupId>
<artifactId>kms-transfer-client</artifactId>
<exclusions>
<exclusion>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-kms</artifactId>
</exclusion>
</exclusions>
<version>0.1.0</version>
</dependency>

<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-api</artifactId>
<version>${nacos.version}</version>
<optional>true</optional>
</dependency>

<dependency>
Expand All @@ -79,6 +92,20 @@
<version>1.15</version>
</dependency>

<!-- for test-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-client</artifactId>
<version>${nacos.version}</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand Down
Loading

0 comments on commit f0dca79

Please sign in to comment.