Skip to content

Commit

Permalink
optimize: upgrade native-lib-loader version (#5914)
Browse files Browse the repository at this point in the history
  • Loading branch information
slievrly authored Oct 9, 2023
1 parent 866ef33 commit 24171a8
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/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Add changes here for all PR submitted to the develop branch.
- [[#5888](https://github.com/seata/seata/pull/5888)] remove sofa test cases
- [[#5831](https://github.com/seata/seata/pull/5831)] upgrade druid and add `test-druid.yml`
- [[#5862](https://github.com/seata/seata/pull/5862)] fix unit test in java 21
- [[#5914](https://github.com/seata/seata/pull/5914)] upgrade native-lib-loader version

Thanks to these contributors for their code commits. Please report an unintended omission.

Expand Down
1 change: 1 addition & 0 deletions changes/zh-cn/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
- [[#5888](https://github.com/seata/seata/pull/5888)] 移除 sofa 测试用例
- [[#5831](https://github.com/seata/seata/pull/5831)] 升级 `druid` 版本,并添加 `test-druid.yml` 用于测试seata与druid各版本的兼容性。
- [[#5862](https://github.com/seata/seata/pull/5862)] 修复单元测试在Java21下无法正常运行的问题。
- [[#5914](https://github.com/seata/seata/pull/5914)] 升级 native-lib-loader 版本

非常感谢以下 contributors 的代码贡献。若有无意遗漏,请报告。

Expand Down
12 changes: 12 additions & 0 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,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 @@ -461,6 +462,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 24171a8

Please sign in to comment.