This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to branch releases-0.10 in repository https://gitbox.apache.org/repos/asf/fury.git
commit 79d521043a0d01ba68286b7f6c4315b4f718b196 Author: Shawn Yang <[email protected]> AuthorDate: Thu May 15 19:04:52 2025 +0800 fix(java): mark fury-test-core as test dep in fury extensions (#2231) ## What does this PR do? mark fury-test-core as test dep in fury extensions ## Related issues Closes #2228 ## Does this PR introduce any user-facing change? <!-- If any user-facing interface changes, please [open an issue](https://github.com/apache/fury/issues/new/choose) describing the need to do so and update the document if necessary. --> - [ ] Does this PR introduce any public API change? - [ ] Does this PR introduce any binary protocol compatibility change? ## Benchmark <!-- When the PR has an impact on performance (if you don't know whether the PR will have an impact on performance, you can submit the PR first, and if it will have impact on performance, the code reviewer will explain it), be sure to attach a benchmark data here. --> --- java/fury-extensions/pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/java/fury-extensions/pom.xml b/java/fury-extensions/pom.xml index eea6cf8b..bb002f98 100644 --- a/java/fury-extensions/pom.xml +++ b/java/fury-extensions/pom.xml @@ -75,6 +75,7 @@ <groupId>org.apache.fury</groupId> <artifactId>fury-test-core</artifactId> <version>${project.version}</version> + <scope>test</scope> </dependency> </dependencies> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
