Skip to content

Commit

Permalink
optimize: upgrade native-lib-loader version (#5917)
Browse files Browse the repository at this point in the history
Signed-off-by: slievrly <[email protected]>
  • Loading branch information
slievrly authored Oct 9, 2023
1 parent b54962f commit 20662fd
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions changes/en-us/2.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ The version is updated as follows:
- [[#5419](https://github.com/seata/seata/pull/5419)] publish images based on java 8/17 and support maven-3.9.0
- [[#5829](https://github.com/seata/seata/pull/5829)] fix codecov chart not display
- [[#5878](https://github.com/seata/seata/pull/5878)] optimize `httpcore` and `httpclient` dependencies
- [[#5917](https://github.com/seata/seata/pull/5917)] upgrade native-lib-loader version

### security:
- [[#5642](https://github.com/seata/seata/pull/5642)] add Hessian Serializer WhiteDenyList
Expand Down
1 change: 1 addition & 0 deletions changes/zh-cn/2.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ Seata 是一款开源的分布式事务解决方案,提供高性能和简单
- [[#5419](https://github.com/seata/seata/pull/5419)] 发布基于多个java版本的docker镜像
- [[#5829](https://github.com/seata/seata/pull/5829)] 修正 `codecov chart` 不展示的问题
- [[#5878](https://github.com/seata/seata/pull/5878)] 优化 `httpcore``httpclient` 的依赖定义
- [[#5917](https://github.com/seata/seata/pull/5917)] 升级 native-lib-loader 版本


### security:
Expand Down
12 changes: 12 additions & 0 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
<assertj-core.version>3.12.2</assertj-core.version>
<jetty-version>9.4.38.v20210224</jetty-version>
<janino-version>3.1.7</janino-version>
<native-lib-loader.version>2.4.0</native-lib-loader.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -455,6 +456,17 @@
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>${testcontainers.version}</version>
<exclusions>
<exclusion>
<groupId>org.scijava</groupId>
<artifactId>native-lib-loader</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>native-lib-loader</artifactId>
<version>${native-lib-loader.version}</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
Expand Down
5 changes: 5 additions & 0 deletions discovery/seata-discovery-etcd3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,10 @@
<artifactId>testcontainers</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>native-lib-loader</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 20662fd

Please sign in to comment.