build: 更新依赖

plusone-commons 更新至 1.1.0-SNAPSHOT;
junit 更新至 5.10.3;
补充 junit-jupiter-engine。
This commit is contained in:
2025-05-02 22:20:03 +08:00
parent 5d21f13757
commit bd19c5ef5b
2 changed files with 10 additions and 4 deletions

10
pom.xml
View File

@@ -18,13 +18,19 @@
<dependency> <dependency>
<groupId>xyz.zhouxy.plusone</groupId> <groupId>xyz.zhouxy.plusone</groupId>
<artifactId>plusone-commons</artifactId> <artifactId>plusone-commons</artifactId>
<version>1.0.0-RC2</version> <version>1.1.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>5.9.2</version> <version>5.10.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.3</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2022-2024 the original author or authors. * Copyright 2022-2025 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -46,7 +46,7 @@ public class ParamBuilder {
public static final Object[] EMPTY_OBJECT_ARRAY = {}; public static final Object[] EMPTY_OBJECT_ARRAY = {};
public static Object[] buildParams(final Object... params) { public static Object[] buildParams(final Object... params) {
if (ArrayTools.isNullOrEmpty(params)) { if (ArrayTools.isEmpty(params)) {
return EMPTY_OBJECT_ARRAY; return EMPTY_OBJECT_ARRAY;
} }
return Arrays.stream(params) return Arrays.stream(params)